我需要创建一个名为nine_lines
的函数,此函数将使用另一个名为three_lines
的函数来打印九个空行。
这就是我所拥有的,使用3.4
#creating a function within a function
def new_line():
print()
def three_lines():
new_line()
new_line()
new_line()
def nine_lines():
three_lines()
three_lines()
three_lines()
nine_lines
打印......
>>> ================================RESTART================================
>>>
>>>
答案 0 :(得分:2)
#creating a function within a function
def new_line():
print()
def three_lines():
new_line()
new_line()
new_line()
def nine_lines():
three_lines()
three_lines()
three_lines()
nine_lines()
我认为你错过了'()'在九线之后回调函数。
打印9行的另一种方法是使用循环:
for i in range(9):
print()