How do I print a number n times in python? [duplicate]
问题 This question already has answers here : Converting integer to string in Python (14 answers) Repeat string to certain length (13 answers) Closed 1 year ago . 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. 回答1