“Comment multiplier un texte en python” Réponses codées

comment multiplier une chaîne en python

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


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

Comment multiplier un texte en python

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

Réponses similaires à “Comment multiplier un texte en python”

Questions similaires à “Comment multiplier un texte en python”

Plus de réponses similaires à “Comment multiplier un texte en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code