Count elements in a list python

前端 未结 6 1425
有刺的猬
有刺的猬 2021-01-26 14:14

I need to be able to count how many of the string \"O\" is in my list

top_board = [
    [None, None, None, None, None, None, None, None, None],
    [None, None,         


        
6条回答
  •  天涯浪人
    2021-01-26 14:42

    Update

    sum([sum([1 for x in y if x == "O"]) for y in top_board])
    

    (hadn't notice the nesting...)

提交回复
热议问题