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
Python 练习实例34
题目:练习函数调用。程序分析:使用函数,输出三次 RUNOOB 字符串。实例#!/usr/bin/python# -*- coding: UTF-8 -*- def hello_runoob...
点击下载文档
本文2024-09-16 17:45:45发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-17774.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章