Answer to Question #269732 in Python for Johanna Immanuel

Question #269732



Write a function in this file called nine_lines that uses the function three_lines (provided below) to print a total of nine lines.



The function three_lines and new_line are defined below so that you can see nested function calls. Also, to make counting “blank” lines visually easier, the print command inside new_line will print a dot at the beginning of the line:








def new_line():








print('.')








def three_lines():








new_line()








new_line()








new_line()



You must execute your script and paste the output produced into a document that you will submit along with your Python script.



It is very helpful if you print a placeholder between the printing of 9 lines and the printing of 25 lines. It will make your output easier to read for your peer assessors. A placeholder can be output such as “Printing nine lines” or “Calling clearScreen(







1
Expert's answer
2021-11-22T09:53:05-0500
def new_line():

  print('')




def three_lines():

  new_line()

  new_line()

  new_line()




def nine_lines():

  three_lines()

  three_lines()

  three_lines()

   

def clear_screen():

  nine_lines()

  three_lines()

  new_line()

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS