Trying to format values for this select box as “%f%”, e.g. 5%
st.sidebar.slider("select box", min_value=0, max_value=5, format="0:.0%")
but get this error: SyntaxError: [sprintf] unexpected placeholder
I also tried format=“%f%”
how can I format these ints so that they just have a ‘%’ after them?