「Python」+演算子で複数の文字列を連結するサンプル
構文
文字列A + 文字列B
サンプルコード
# coding: utf-8 resA = 'A001' + 'B002' + 'C003' print(resA) strA = 'T001' strB = 'T002' strC = 'T003' resB = strA + strB + strC print(resB) resC = strA + strB + 'arkgame' print(resC)
実行結果
>python 101.py
A001B002C003
T001T002T003
T001T002arkgame