#函数调用练习
def hello_world():
print('hello world!')
def there_hellos():
for i in range(3):
hello_world()
there_hellos()
python#函数调用练习
最新推荐文章于 2024-09-13 15:27:57 发布
#函数调用练习
def hello_world():
print('hello world!')
def there_hellos():
for i in range(3):
hello_world()
there_hellos()

被折叠的 条评论
为什么被折叠?