热线电话:13121318867

登录
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.0000
1
关注作者
收藏
评论(0)

发表评论

暂无数据
推荐帖子