「Python」join()で文字列を作成するサンプル

2019年5月6日

サンプルコード

cftLst= ["1","3","6","8", "Test", "Data"]
strA = ''.join(cftLst)
strB = ' '.join(cftLst)
print(strA)
print(strB)

実行結果
1368TestData
1 3 6 8 Test Data

Python

Posted by arkgame