There is a way to format the decimal separator of number input using dot and not comma? When I type 0.9, the input format to 0,9. there is a way to format using dot?
It may depend on the language or locale settings of your browser. See also this topic:
Summary
There are some inconsistencies in displaying floats in st.number_input. Floats with two decimal places are displayed as ‘X,XX’ whereas floats with one decimal places are displayed as ‘X.X’. I tried to set the number format to “%0.2f”, but this did not change the issue.
Steps to reproduce
import streamlit as st
st.set_page_config(
page_title="Test",
page_icon=" ",
)
st.title('test')
st.sidebar.title('Test.')
with st.sidebar:
test = st.number_input(
…