I wanted the code to print out certain strings. The issue was the the output was not what I expected, since it would print out something like this: BruhBruh BruhBruh
I was hoping for this: Bruh Bruh
How do I fix it?
def repeate(c,rep): c=input("what str") rep=int(input("how many times?")) for i in range(rep): print(c*rep) return i repeat=repeate(0,0) print(repeat)
Add a space to the user input.
Change your line: c=input("what str") + “ “
Now if the user enters “Dude”, c will be “Dude “.
1.4m articles
1.4m replys
5 comments
57.0k users