我在 Windows PowerShell 中使用 Python 2.7。
def loop(loop):
i = 0
numbers = []
while i < loop:
print "At the top i is %d" % i
numbers.append(i)
i += 1
print "Numbers now: ", numbers
print "At the bottom i is %d" % i
value = raw_input("Choose the loop value:\n>")
print value
loop(value)
当我6
作为输入输入时value
,loop()
变成一个无限循环。
知道出了什么问题吗?