which operator of python creates a new string that is number of repetitions of the input string.
Answers
Answered by
1
The * operator python creates a new string that is number of repetitions of the input string.
Example
print("hello" * 69)
Similar questions