Pythonリストとタプルの実践的な使い方
リストの基礎
Pythonのリストは [] で囲み、カンマ区切りで要素を格納する可変長シーケンスです。異なる型を混在させることも可能です。
games = ['Apex Legends', 'Valorant', 'Elden Ring', 'CS2', 'Fortnite']
# インデックスアクセス
first = games[0] # 'Apex Legends'
nested = games[0][2] # 'e'
last = games[-1] # 'Fortnite'
slice_ex ...
7月4日 22:13 投稿