iT邦幫忙

0

python 如何取得「串列中的串列」的len?

  • 分享至 

  • xImage

goo了一下沒goo到。
照理,這麼常見的應用,
應該有相關討論??
希望知道的大大幫忙解惑,
謝謝m(__)m

tryit iT邦研究生 4 級 ‧ 2022-10-15 18:43:30 檢舉
a=[[1,2,3]]
print (a[0][0])
謝謝幫忙。
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

2 個回答

0
一級屠豬士
iT邦大師 1 級 ‧ 2022-10-15 19:17:48
最佳解答
x = [[1], [1,2], [1,2,3], [], [[]]]
y = [len(lst) for lst in x]
print(y)
[1, 2, 3, 0, 1]

非常感謝。

1
海綿寶寶
iT邦大神 1 級 ‧ 2022-10-15 18:45:43

goo了一下沒goo到。

你用的Google

我用的Google
好像不是同一個
/images/emoticon/emoticon06.gif

嘻,謝謝大神,
可能我沒有解釋清楚。

我要發表回答

立即登入回答