Spaces:
Sleeping
Sleeping
File size: 318 Bytes
c58d38b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
def main():
st.title("New Space for CCS 229")
st.caption("A sample space for our CCS 229 Intelligent Systems course.")
val = st.slider('Sample Slider', min_value=0, max_value=50)
st.write(f"You have chosen value {val}.")
if __name__ == "__main__":
main() |