博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python3 练习笔记四
阅读量:4579 次
发布时间:2019-06-09

本文共 230 字,大约阅读时间需要 1 分钟。

# 练习函数调用def hello_world():    print("hello world")def three_hello_world():    for i in range(3):        hello_world()if __name__ == '__main__':    three_hello_world()

调试并输出:

 

转载于:https://www.cnblogs.com/RHadoop-Hive/p/10383761.html

你可能感兴趣的文章