파이썬 기초1 [python]파이썬 기초 연습 console tic tac toe 게임. (3목 5목 오목 삼목) 파이썬 기초 공부 from itertools import cycledef win(current_game): def check_winner(check, type_win): if check.count(check[0]) == len(check) and check[0] != 0: print(f"Player {check[0]} is the winner : {type_win}") return True return False #Diagnol Back-slash diags = [] test_reverse = reversed(range(len(current_game))) for col, row in enumerate(test_reverse): diags.append(current_game[row][col]) if che.. 2019. 3. 1. 이전 1 다음 반응형