w3resource

Python: Get the current week

Python Datetime: Exercise-45 with Solution

Write a Python program to get the current week.

Sample Solution:-

Python Code:

import datetime
Jan1st = datetime.date(2017,10,12)
year,week_num,day_of_week = Jan1st.isocalendar() # DOW = day of week
print()
print("Year %d, Week Number %d, Day of the Week %d" %(year,week_num, day_of_week))
print()

Sample Output:

Year 2017, Week Number 41, Day of the Week 4 

Flowchart:

Flowchart: Get the current week.

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to display a calendar for a locale.
Next: Write a Python program to create a HTML calendar with data for a specific year and month.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.