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,
cnt = sum([lst.count('O') for lst in top_board]) # then do something depending on cnt