「python入門」リストの要素を追加するサンプル

2018年8月9日

サンプルコード:
cftLst = [“Wel", “Come", “Tokyo"]
cftLst.append([“Kdf", “Da"])
print cftLst # [“Wel", “Come", “Tokyo", [“Kdf", “Da"]]

Python

Posted by arkgame