「Python」バックスラッシュで文字列を連結するサンプル

2020年12月6日

構文
文字列A\
使用例

# coding: utf-8
resA = 'A001'  'B002'    'C003'
print(resA)

resB = 'Ta'\
    'Tb'\
    'Tc'
print(resB)

実行結果
>python 101.py
A001B002C003
TaTbTc

Python

Posted by arkgame