CS Assignment 01 PDF

Title CS Assignment 01
Course Cs Terms
Institution University of the People
Pages 2
File Size 21.1 KB
File Type PDF
Total Downloads 93
Total Views 152

Summary

CS Assignment 01...


Description

def new_line(): #printing of one new line print('.') def three_lines():#printing of three new lines new_line() new_line() new_line() def nine_lines():#printing of the nine lines three_lines() three_lines() three_lines() def clear_screen(): # These are the function’s used to make the above functions get the 25 lines needed when combine together. print('Printing 25 lines..') nine_lines() nine_lines() three_lines() three_lines() new_line() # Calling of the functions used to do the program. print('Printing 9 lines..') nine_lines() clear_screen() The results are: # print nine ’.’ lines Printing 9 lines.. . . . . . . . . . # print 25 ‘.’ lines Printing 25 lines.. . . . . . . . .

. . . . . . . . . . . . . . . . . >>>...


Similar Free PDFs