Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

How to multiply a text in python

text = "Hello World"
times = 3
repeated = text * times
print('Not Repeated: ', text)
print('Repeated: ', repeated) 
 
PREVIOUS NEXT
Tagged: #How #multiply #text #python
ADD COMMENT
Topic
Name
4+4 =