0

The program offers the number format as Default in a.b format (like 1.2) but I want to show as a:b format (like 1:2) How can I change this? I tried below but it didn’t work:

(st.number_input(“time”)).replace(".",":")
murat taşçı
  • 64
  • 1
  • 2
  • 22

1 Answers1

0
str(st.number_input(“time”,format="%f")).replace(".",":")
murat taşçı
  • 64
  • 1
  • 2
  • 22