To upload files, please first save the app
import streamlit as st
st.title("App")
#text
st.markdown("code")
#rainbow text
st.markdown("**:rainbow[code]**")
name= st.text_input("name?")
st.write("Hello", name)
age = st.slider("age", 12,15)
st.write("you are",age, "years old")
enable_camera= st.enable_camera("allow camera ")
if enable_camera:
picture= st.camera_input("take a picture")
if picture:
st.image(picture)
color= st.radio("pick a color", ["red","blue","green"])
st.write("you picked", color)
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?