我一直无法找到任何关于此的信息。
我想知道如何使用clear_screen
可以打印出 20 个空白行的函数(例如)。
我的程序的最后一行应该是调用clear_screen
.
我的代码的开头是:
def new_line():
print
def three_lines():
new_line()
new_line()
new_line()
def nine_lines():
three_lines()
three_lines()
three_lines()
print " "
nine_lines()
print " "
打印功能有效,但不适用于clear_screen()
,这就是我需要的工作。
如果有人可以帮助我或有任何建议,那就太好了,谢谢。