show how a function in this file called nine_lines that uses a function called three_lines to print nine blank lines. Now add a function named clear_screen that prints out twenty-five blank lines. The last line of your program should call the function to clear_screen .clear_screen . show tryme3.py . show tryme3.py .named The function three_lines and new_line are defined below so that you can see a nested function call. def new_line(): print() def three_lines(): new_line() new_line() new_line()
show how a function in this file called nine_lines that uses a function called three_lines to print
nine blank lines. Now add a function named clear_screen that prints out twenty-five blank lines. The last line of your program should call the function to clear_screen .clear_screen . show tryme3.py . show tryme3.py .named
The function three_lines and new_line are defined below so that you can see a nested function call.
def new_line():
print()
def three_lines():
new_line()
new_line()
new_line()