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...
Allob
commited on
Oct 23, 2023
Commit
935a660
·
1 Parent(s):
1ef17c7
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
import streamlit as st
2
+
3
+
secret_word = "нос"
4
+
5
+
attempts = {}
6
+
7
+
word = st.text_input('Input a word')
8
+
9
+
if st.button('Guess'):
10
+
attempts[word] = 0.11
11
+
st.write(attempts)