Answer to Question #3358 in Python for mukunda
Write function 'Nine_line()' to print 9 new lines using the functions 'Three_line()'and'New_line()
1
2011-08-02T14:22:47-0400
def New_Line():
print()
def Three_Lines():
for i in range(3): New_Line()
def Nine_Lines():
for i in range(3): Three_Lines()
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!
Learn more about our help with Assignments:
Python
Comments
Leave a comment