Count elements in a list python

前端 未结 6 2098
暖寄归人
暖寄归人 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:50

    Since you asked for a function:

    def count_O (top_board):
        if True in ["O" in e for e in top_board]:
            print "O found"
    

提交回复
热议问题