Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -31,7 +31,7 @@ def display_board():
|
|
| 31 |
#UIApp starts here
|
| 32 |
st.set_page_config(page_title="Python - Tic Tac Toe", page_icon=":python:")
|
| 33 |
st.header("Python - Tic Tac Toe")
|
| 34 |
-
st.text("Legal Numbers: " + ",".join(legal_numbers))
|
| 35 |
|
| 36 |
user_input=get_userInput()
|
| 37 |
response=validate_userInput(user_input)
|
|
|
|
| 31 |
#UIApp starts here
|
| 32 |
st.set_page_config(page_title="Python - Tic Tac Toe", page_icon=":python:")
|
| 33 |
st.header("Python - Tic Tac Toe")
|
| 34 |
+
st.text("Legal Numbers: " + str(",".join(legal_numbers)))
|
| 35 |
|
| 36 |
user_input=get_userInput()
|
| 37 |
response=validate_userInput(user_input)
|