Advertisement
Guest User

Untitled

a guest
May 24th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. computer_move_status = False
  2. while computer_move_status == False:
  3. random_computer_move = random.randrange(0,8)
  4. if board[random_computer_move] == " ":
  5. board[random_computer_move] = computer_piece
  6. computer_move_status = True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement