Python 练习

1. 题目

练习函数调用。

2. 分析

3. 实例

点我看答案
def hello_world():
    print('hello world')


def three_hellos():
    for i in range(3):
        hello_world()


if __name__ == '__main__':
    three_hellos()

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""