#函数调用练习
def hello_world():
print('hello world!')
def there_hellos():
for i in range(3):
hello_world()
there_hellos()
#函数调用练习
def hello_world():
print('hello world!')
def there_hellos():
for i in range(3):
hello_world()
there_hellos()