黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python 練習(xí)實例72

python 練習(xí)實例72

python 編程100例python 編程100例

題目:創(chuàng)建一個鏈表。

程序分析:無。

實例(python 2.0+):

#!/usr/bin/python
# -*- coding: utf-8 -*-
 
if __name__ == '__main__':
    ptr = []
    for i in range(5):
        num = int(raw_input('please input a number:\n'))
        ptr.append(num)
    print ptr

以上實例輸出結(jié)果為:

please input a number:
3
please input a number:
5
please input a number:
7
please input a number:
8
please input a number:
2
[3, 5, 7, 8, 2]

python 編程100例python 編程100例

下一節(jié):python 練習(xí)實例73

python 編程100例

相關(guān)文章