context-game / app.py
Allob's picture
Create app.py
935a660
raw
history blame
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)