Latest web development tutorials

Python 練習實例34

Python 100例 Python 100例

題目:練習函數調用。

程序分析:無。

程序源代碼:

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

def hello_world():
    print 'hello world'

def three_hellos():
    for i in range(3):
        hello_world()
if __name__ == '__main__':
    three_hellos()

以上實例輸出結果為:

hello world
hello world
hello world

Python 100例 Python 100例