Count elements in a list python

前端 未结 6 2165
暖寄归人
暖寄归人 2021-01-26 14:22

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:49

    Update

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

    (hadn't notice the nesting...)

提交回复
热议问题