markytools commited on
Commit
b16e227
·
1 Parent(s): 7d849d3
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -1,4 +1,11 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ genre = st.radio(
4
+ "What's your favorite movie genre",
5
+ [":rainbow[Comedy]", "***Drama***", "Documentary :movie_camera:"],
6
+ captions = ["Laugh out loud.", "Get the popcorn.", "Never stop learning."])
7
+
8
+ if genre == ':rainbow[Comedy]':
9
+ st.write('You selected comedy.')
10
+ else:
11
+ st.write("You didn\'t select comedy.")