This is again for the quiz... How do I turn an input number into an integer so I can have the text repeat however many times the number is?
Use this form: variable = int(input('Words to prompt the user for a value')) Ex: number = int(input('How many times to repeat?'))
Also, I remember Prof did explain this issue in the lecture presentation ( Check it if needed on pg.17): https://moodle.augustana.edu/pluginfile.php/227259/mod_resource/content/0/Day01-introduction.pdf
Hope this helps!
I did for I in range (int(whatever the previous input is))