sum = 0
x = 1
i = 0
while Ture:
sum = sum +x
x =x + x
i = i + 1
if i > 20:
break
print sum
运行之后出现的是NameError: name 'Ture' is not defined 难道布尔值还需要定义??
小猫过河
相关分类