开发者社区> 问答> 正文

函数调用问题

函数调用问题

展开
收起
珍宝珠 2019-11-19 16:09:39 2292 0
1 条回答
写回答
取消 提交回答
  • #!/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
    
    2019-11-19 16:11:58
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
函数对象 立即下载
低代码开发师(初级)实战教程 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载

相关实验场景

更多