2021年1月25日星期一

I have issues of printing out the string correctly

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)  
https://stackoverflow.com/questions/65894952/i-have-issues-of-printing-out-the-string-correctly January 26, 2021 at 10:03AM

没有评论:

发表评论