Spaces:
Runtime error
Runtime error
File size: 143 Bytes
dd0ef30 |
1 2 3 4 5 6 |
import streamlit as st
import datetime
d = st.date_input("When's your birthday", datetime.date(2020, 8, 11))
st.write("Your birthday is:", d)
|