Spaces:
Sleeping
Sleeping
File size: 245 Bytes
c20b3ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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...') |