「Python」append()でリストへの要素を追加するサンプル
書式
リスト名.append(要素)
使用例
cftLst = ["A001", "B002", "C003"] print(cftLst) cftLst.append("D004") print(cftLst)
結果
['A001’, 'B002’, 'C003’]
['A001’, 'B002’, 'C003’, 'D004’]
Coding Changes the World
書式
リスト名.append(要素)
使用例
cftLst = ["A001", "B002", "C003"] print(cftLst) cftLst.append("D004") print(cftLst)
結果
['A001’, 'B002’, 'C003’]
['A001’, 'B002’, 'C003’, 'D004’]