Contoh streamLit format_func
import streamlit as st
display = ("male", "female")
options = list(range(len(display)))
value = st.selectbox("gender", options, format_func=lambda x: display[x])
st.write(value)
Tofufu