HOME/Articles/

simple python-example-77 (snippet)

Article Outline

Python example 'python-example-77'

python-example-77

Python example: python-example-77

#!/usr/bin/python
# -*- coding: UTF-8 -*-

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