“Jak pomnożyć ciąg w Python” Kod odpowiedzi

Jak pomnożyć ciąg w Python

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


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

Python pomnóż ciąg

n = 5
string = "a"

output = string * n

print(output)

## Output:
# aaaaa
Cooperative Cobra

Odpowiedzi podobne do “Jak pomnożyć ciąg w Python”

Pytania podobne do “Jak pomnożyć ciąg w Python”

Więcej pokrewnych odpowiedzi na “Jak pomnożyć ciąg w Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu