使用helloAgain()函数调用hello()实现输出两遍hello word
def helloAgain():
print('hello word')
print('hello word')
helloAgain()
def hello():
print('hello word')
print('hello word')
def helloAgain():
hello()
helloAgain()
如果对你有帮助,可以点击我这个回答右上方的【采纳】按钮,给我个采纳吗,谢谢