LoginSignup
0
0

More than 1 year has passed since last update.

paizaラーニング「列数の出力 Python3編」

Posted at

私の解答

li = [[1, 2, 3, 4], [6, 5, 4, 3], [8, 1, 3, 1]]
print(len(li[0]))

前出の問題の解答例を参考にしたので、解答例と同じになりました。

解答例

li = [[1, 2, 3, 4], [6, 5, 4, 3], [3, 1, 8, 1]]
print(len(li[0]))
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