Python 練習(xí)實(shí)例34
題目:練習(xí)函數(shù)調(diào)用。
程序分析:無(wú)。
程序源代碼:
#!/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()
以上實(shí)例輸出結(jié)果為:
hello world hello world hello world
更多建議: