Python学习17-while循环

上一篇 / 下一篇  2014-06-25 16:48:06 / 个人分类:笨办法学Python

$ex33.py
i = 0
numbers = []

while i < 6:
    print ("At the top 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)

print (numbers)

# from sys import argv
def printlist():
    print ("Input a number:")
    k = int(input ("Number:> "))
    
    b = []    
    i = 0
    while i < k:
        b.append(i)
        print (b[i])
        i += 1
        
    return b
print ("---" * 10)
print (printlist())

输出结果:
At the top i is 0
Numbers now:  [0]
At the bottom i is 1
At the top i is 1
Numbers now:  [0, 1]
At the bottom i is 2
At the top i is 2
Numbers now:  [0, 1, 2]
At the bottom i is 3
At the top i is 3
Numbers now:  [0, 1, 2, 3]
At the bottom i is 4
At the top i is 4
Numbers now:  [0, 1, 2, 3, 4]
At the bottom i is 5
At the top i is 5
Numbers now:  [0, 1, 2, 3, 4, 5]
At the bottom i is 6
The numbers: 
0
1
2
3
4
5
[0, 1, 2, 3, 4, 5]
------------------------------
Input a number:
Number:> 3
0
1
2
[0, 1, 2]



TAG:

 

评分:0

我来说两句

Open Toolbar