Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Allob
/
context-game
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
935a660
context-game
/
app.py
Allob
Create app.py
935a660
over 1 year ago
raw
Copy download link
history
blame
Safe
172 Bytes
import
streamlit
as
st
secret_word =
"нос"
attempts = {}
word = st.text_input(
'Input a word'
)
if
st.button(
'Guess'
):
attempts[word] =
0.11
st.write(attempts)