函数调用

#!/usr/bin/python
# -*- coding: UTF-8 -*-
def hello_world():
    print('Hello world')
def three_hello_world():
    for i in range(3):
        hello_world()
if __name__ == '__main__':
    three_hello_world()

 

posted @ 2019-08-28 09:05  菩提花开  阅读(119)  评论(0编辑  收藏  举报