how to do string multiplication in python code example
Example: multiplication of string with int in python
#multiplying string with a integer
"superman " * 5
# It will return a new string
#multiplying string with a integer
"superman " * 5
# It will return a new string