# Create the range of dates here
seven_days = pd.date_range(start='2017-1-1', periods=7)
# Iterate over the dates and print the number and name of the weekday
for day in seven_days:
print(day.dayofweek, day.strftime("%A"))
import datetime
now = datetime.datetime.now()
print(now.strftime("%A"))