Allob commited on
Commit
935a660
·
1 Parent(s): 1ef17c7

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -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)