Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,6 +9,7 @@ col7, col8, col9 = st.columns(3)
|
|
| 9 |
|
| 10 |
def get_userInput():
|
| 11 |
input = st.text_input("Enter a number between 1 to 9: ", key="input")
|
|
|
|
| 12 |
return input
|
| 13 |
|
| 14 |
def validate_userInput(user_input):
|
|
@@ -48,7 +49,6 @@ st.set_page_config(page_title="Python - Tic Tac Toe", page_icon=":python:")
|
|
| 48 |
st.header("Python - Tic Tac Toe")
|
| 49 |
|
| 50 |
user_input=get_userInput()
|
| 51 |
-
st.text("Legal Numbers: " + "".join(str(legal_numbers)))
|
| 52 |
display_board()
|
| 53 |
|
| 54 |
#UI Buttons
|
|
|
|
| 9 |
|
| 10 |
def get_userInput():
|
| 11 |
input = st.text_input("Enter a number between 1 to 9: ", key="input")
|
| 12 |
+
st.text("Legal Numbers: " + "".join(str(legal_numbers)))
|
| 13 |
return input
|
| 14 |
|
| 15 |
def validate_userInput(user_input):
|
|
|
|
| 49 |
st.header("Python - Tic Tac Toe")
|
| 50 |
|
| 51 |
user_input=get_userInput()
|
|
|
|
| 52 |
display_board()
|
| 53 |
|
| 54 |
#UI Buttons
|