본문 바로가기

app/python

python 오늘의 요일 구하기


python get today of the week


from datetime import date

today = date.today()

weekday = today.strftime("%A").lower()