Answers for "given the weekday number, print the weekday name corresponding to it."

1

python number and name of weekday

# 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"))
Posted by: Guest on July-22-2021

Code answers related to "given the weekday number, print the weekday name corresponding to it."

Python Answers by Framework

Browse Popular Code Answers by Language