:Pythonの無限ながら、関数の内部ループどんなに私はこの関数で無限ループを得続けるしようと何
At the top of i is 0
At the top of i is 0
...
ありがとう:私は、スクリプトを実行すると
# Excercise 33 - LPTHW
i = 0
numbers = []
#Ec 1
#numb = 6
#iplus = 10
def theloop(numb):
global i
#i = 0
#number = []
while i < numb:
print "At the top of i is %d" % i
numbers.append(i)
i = i + 1
print "Numbers now: ", numbers
print "At the bottom i is %d" % i
print "The numbers: "
for num in numbers:
print num
theloop(7)
それだけで印刷を続けますあらかじめ。
これは*実行中のスクリプトですか?ここで私にとってうまくいくからです。 –
これは私のために働く。 – satoru
Python 3でスクリプトを実行します(印刷構文を修正してください)。ここでうまく動作します。 numbers.Append()が何か変なことをしていない限り、あなたが何を記述するかは起こりません。押し込みを確認してください。 – Thomas