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
How do I escape the mathematical operation in print()?
I am not asking how to print the string '10' n times, I am asking how to print the number 10 n times.
print([10] * 5)