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例

上一篇:Python 练习实例33

下一篇:Python 练习实例35

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程