タイトル: 要素の追加
要素の追加はappend関数を使用する。
【構文】
リスト名.append(値)
【例文】
list1 = ["a", "b", "c"]
list1.append("d")
print(list1[3])
【出力結果】
d
要素の追加はappend関数を使用する。
【構文】
リスト名.append(値)
【例文】
list1 = ["a", "b", "c"]
list1.append("d")
print(list1[3])
【出力結果】
d