import sys def print_board(): for i in range(3): for j in range(3): print map[2 - i][j], if j != 2: print '|', print '' def check_done(): for i in range(3): if map[i][0] == map[i][1] == map[i][2] != ' ' or map[0][i] == map[1][i] == map[2][i] != ' ':…
软件改变生活:购物.餐饮.商旅出行.资料查找... Everybody in this country should learn how to program a computer...because it teaches you how to think. -----------------------Steve Jobs 微软创始人比尔盖茨13岁第一次接触计算机 Twitter创始人杰克多西在1984年8岁时有了Macintosh(苹果机) Facebook创始人马克扎克伯格在六年级的时候第…