aashwinik commited on
Commit
a9be8b6
·
verified ·
1 Parent(s): 58902ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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: " + str(",".join(str(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)