LoginSignup
0
0

More than 5 years have passed since last update.

【個人的備忘録】pythonのリスト・タプル・dictなど

Last updated at Posted at 2018-10-15
◎サンプルコード
・[リスト]
li = [[1,2,3],[4,5,6],[7,8,9]]

print(li[0])

・[タプル]
t = {"札幌","仙台","東京","名古屋","大阪","福岡"}

print(type(t))
print(t)

・[dict]
d = ({500:"aaa",400:"bbb",600:"ccc"})

print(d)

追記:ご指摘がありましたので訂正させていただきます。申し訳ありませんでした。

0
0
2

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
0
0