2019-03-28
阅读量:
614
题目:练习函数调用
程序分析:
# 代码
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






评论(0)


暂无数据
推荐帖子
2条评论
6条评论
7条评论