Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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"))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #number #weekday
ADD COMMENT
Topic
Name
6+9 =