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