Python 练习实例34
题目:练习函数调用。
程序分析:使用函数,输出三次 RUNOOB 字符串。
#!/usr/bin/python # -*- coding: UTF-8 -*- def hello_runoob(): print ('RUNOOB') def hello_runoobs(): for i in range(3): hello_runoob() if __name__ == '__main__': hello_runoobs()
以上实例输出结果为:
RUNOOB RUNOOB RUNOOB
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com