import streamlit as st
# Writes text to the browser
st.write("Text to write to browser")
# Creates a text input field
# `step` is the increment for + - buttons
st.number_input("Label of input box", step=1)
# Creates a select box
st.selectbox("Label for selectbox", ["first choice","second choice"])