为了账号安全,请及时绑定邮箱和手机立即绑定

大家帮忙解决一下,代码看不懂

大家帮忙解决一下,代码看不懂

小啥米 2016-08-16 17:57:00
def hello_world():     print 'hello world'def three_hellos():     for i in range(3):         hello_world()if __name__ == '__main__':     three_hellos()
查看完整描述

1 回答

?
tanhouyusheng

TA贡献94条经验 获得超59个赞

def hello_world():#这个函数的意思就是打印hello world
    print 'hello world'

def three_hellos():#这个函数的意思就是运行上边的打印函数
    for i in range(3):
        hello_world()

if __name__ == '__main__':

#这是主函数,意思是调用那个打印三遍的函数,过程是先调用那个打印三遍的函数,然后那个函数调用三次打印函数
    three_hellos()

查看完整回答
3 反对 回复 2016-08-16
  • 小啥米
    小啥米
    第二个是定义这个函数,然后再调用hello_world()这个函数么, 为什么for i in range(3),表示打印了3次呢
  • tanhouyusheng
    tanhouyusheng
    range(3)得到一个【0,1,3】的列表就是三个数,然后就运行了三次,def 就是定义函数的关键字
  • 1 回答
  • 0 关注
  • 1473 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信