题目描述:
练习函数调用。
解题思路:
>
代码:
def hello_runoob(): print('RUNOOB') def hello_runoobs(): for i in range(3): hello_runoob() hello_runoobs()
题目描述:
练习函数调用。
解题思路:
>
代码:
def hello_runoob(): print('RUNOOB') def hello_runoobs(): for i in range(3): hello_runoob() hello_runoobs()