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,
if [j for i in top_board for j in i].count('O'): print "O is present in the list"