Skip to content

Instantly share code, notes, and snippets.

View BimarDwi's full-sized avatar

BimarDwi

  • Balikpapan
View GitHub Profile
@BimarDwi
BimarDwi / tic_tac_toe.py
Last active July 13, 2021 10:10
Simple tic tac toe game.
def board():
print(f" | | ")
print(" " + letter_position[1] + " | " + letter_position[2] + " | " + letter_position[3] + " ")
print(f" | | ")
print("___________")
print(f" | | ")
print(" " + letter_position[4] + " | " + letter_position[5] + " | " + letter_position[6] + " ")
print(f" | | ")
print("___________")