SEARCH
POMODORO
CHILL BEATS
NOTES
from datetime import date
import calendar
from datetime import datetime
curr_date=date.today()
join=calendar.day_name[curr_date.weekday()];
today = date.today()
now = datetime.now()
join+=", "+today.strftime("%B %d, %Y")
print(join)