In: Computer Science
Create and submit a Python program (in a module) that contains a main function that prints 17 lines of the following text containing your name:
Welcome to third week of classes at College, <your name here>!
can someone please show me how to do this step by step? I'm just confused and keep getting errors in idle.
# create a main function def main(): for i in range(17): # this will iterate 17 times # so, this is printed 17 times print("Welcome to third week of classes at College, <your name here>!") if __name__ == '__main__': main() # call the main function to print string 17 times