# Tic-Tac-Toe Code an interactive, two-player game of Tic-Tac-Toe. You'll use a two-dimensional list of `str`s. ## Starter Code ```eval_rst * :download:`tic_tac_toe.py ` ``` ``` (...a game already in progress) X O O X X X O 'O', choose your location (row, column): 0 1 X O O O X X X O 'X', choose your location (row, column): 2 0 X O O O X X X X O The game is a tie. ``` --- ©2021 Daniel Gallo This assignment is licensed under a [Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License](https://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US). ![Creative Commons License](images/by-nc-sa.png) Adapted for Python from Graham Mitchell's [Programming By Doing](https://programmingbydoing.com/)