1.print関数を使って配列の中身を出力する場合は、以下に添付しています。
list = [1, 2, 5, 9]
print (list)
2.配列にデータを追加する場合は、appendメソッドというものを使います。
list = [1,2, 5, 9]
list.append(10)
print(list)
#list.insert
配列の要素を削除したい場合はpopメソッドが便利です。
list = [1, 3, 4, 6]
list.pop(0)
print(list)
More than 1 year has passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme