How Do I Print A Number N Times In Python?
How do I print a number n times in Python? I can print 'A' 5 times like this: print('A' * 5) AAAAA but not 10, like this: print(10 * 5) 50 I want the answer to be 10 10 10 10 10 H
Solution 1:
10*5
actually does multiplication and ends up giving you 50, but when you do '10 '*5
, the *
operator performs the repetition operator, as you see in 'A' * 5
for example
print('10 ' * 5)
Output will be 10 10 10 10 10
Or you can explicitly convert the int to a string via str(num)
and perform the print operation
print((str(10)+' ') * 5)
Solution 2:
If you have the number as a variable:
number = 10
print("f{number} " * 5)
Or without f-strings:
number = 10
print((str(number)) + ' ') * 5)
If you just want to print a number many times, just handle it as as string:
print("10 " * 5)
Solution 3:
This trick only works for strings.
print('10' * 5)
Will print:
1010101010
That's because the *
operator is overloaded for the str
class to perform string repetition.
Post a Comment for "How Do I Print A Number N Times In Python?"