Count elements in a list python

前端 未结 6 1532
有刺的猬
有刺的猬 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:30

    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"
    

提交回复
热议问题