#------------------------------------------------------------------------------ # Loop2.py #------------------------------------------------------------------------------ # print out the squares and cubes of some numbers for x in [1, 2, 3, 4, 5, 6]: print(x,'\t',x**2,'\t',x**3) # print("happy") # end for