「Python」remove()とappend()で要素を削除、追加
1.removeメソッドで要素を削除
cftLst = [6,5,8,4,5]
cftLst.remove(5)
print(cftLst)
実行結果
[6, 2, 3, 4]
2.appendメソッドで要素を追加
cftLst = [6,7,8,4]
cftLst.append(5)
print(cftLst)
実行結果
[6, 7, 8, 4, 5]
Coding Changes the World
1.removeメソッドで要素を削除
cftLst = [6,5,8,4,5]
cftLst.remove(5)
print(cftLst)
実行結果
[6, 2, 3, 4]
2.appendメソッドで要素を追加
cftLst = [6,7,8,4]
cftLst.append(5)
print(cftLst)
実行結果
[6, 7, 8, 4, 5]