文字列の連結・繰り返し|Pythonのお勉強
2022/1/2 2022/2/14
Pythonで文字列を連結したり、N回繰り返す方法です。
サンプルコード
# Simply concatenate
word = "Bon" + " " + "Voyage!!"
print(word)
# Repeat N times
word15 = "Bon " * 15
print(word15)
サンプルコード結果
*** Remote Interpreter Reinitialized ***
Bon Voyage!!
Bon Bon Bon Bon Bon Bon Bon Bon Bon Bon Bon Bon Bon Bon Bon
>>>