Mathemagic / app.py
RMHalak's picture
Create app.py
c20b3ba verified
raw
history blame
245 Bytes
import streamlit as st
# with open('/answer.txt', 'w') as file:
# answer =
answer = "Y"
user_answer = st.text_input('Your answer', value="")
if user_answer == answer:
st.markdown('YEAH! YOU MADE IT!')
else:
st.markdown('Nope...')