0
0

More than 1 year has passed since last update.

paizaラーニング「i 行目 j 列目の出力 Python3編」

Posted at

私の解答

li = [[1, 2, 3], [8, 1, 3], [10, 100, 1]]
print(li[1][2])

解答例と全く同じになりました!!

解答例

li = [[1, 2, 3], [8, 1, 3], [10, 100, 1]]
print(li[1][2])
0
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
0
0