1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AHC task (2) append

Last updated at Posted at 2020-03-04

末尾に要素を追加するときappend()を使用
引用元

append.py
fruitList = ['リンゴ', 'オレンジ', 'ナシ']

print(fruitList)
#['リンゴ', 'オレンジ', 'ナシ']

fruitList.append('ブドウ')
print(fruitList)
#['リンゴ', 'オレンジ', 'ナシ', 'ブドウ']

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?