Spaces:
Sleeping
Sleeping
File size: 172 Bytes
935a660 |
1 2 3 4 5 6 7 8 9 10 11 |
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) |