菜鸟教程 练习实例34 (python3)

题目:练习函数调用。
程序分析:无。

#!/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()

猜你喜欢

转载自blog.csdn.net/zhangyu4863/article/details/80544682