“Cómo multiplicar un texto en Python” Código de respuesta

Cómo multiplicar una cadena en Python

#Python 2.x:
#print 'string' * (number of iterations)
print '-' * 3


#Python 3.x:
#print ('string' * (number of iterations))
print('-' * 3)
KeshavM05

Cómo multiplicar un texto en Python

text = "Hello World"
times = 3
repeated = text * times
print('Not Repeated: ', text)
print('Repeated: ', repeated) 
Undercode

Respuestas similares a “Cómo multiplicar un texto en Python”

Preguntas similares a “Cómo multiplicar un texto en Python”

Más respuestas relacionadas con “Cómo multiplicar un texto en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código