Python 练习实例77

最后更新于:2022-03-27 01:26:07

Python 练习实例77

Python 练习实例77 Python 100例

题目:循环输出列表

程序分析:无。

程序源代码:

实例

#!/usr/bin/python
# -*-
coding: UTF8 -*-

if __name__ == ‘__main__‘:
s = ["man","woman","girl","boy","sister"]
for i in range(len(s)):
print s[i]

以上实例输出结果为:

man
woman
girl
boy
sister

Python 练习实例77 Python 100例