Im trying to write a program so that I get a result of...
5 : Rowan
6 : Rowan
7 : Rowan
8 : Rowan
9 : Rowan
10 : Rowan
11 : Rowan
12 : Rowan
I want to be able to set it so that I can change the starting number, the amount of times it repeats and the word that it repeats.
this is what i have so far...
def hii(howMany, start, Word):
Word
for howMany in range (howMany):
print howMany + start, ":", "-"
Im just having trouble making it so i can change the word that repeats