标签: python-3.4
所以我在ipython-notebook上非常非常新手。我试图编写代码,例如:
y=10 y=y**2 y=y**2
等等。你能救我吗?
答案 0 :(得分:0)
y = 10 N = 5 for _ in range(N): y = y ** 2 print (y)