w3resource

Python: Convert Year/Month/Day to Day of Year

Python datetime: Exercise-11 with Solution

Write a Python program to convert Year/Month/Day to Day of Year in Python.

Sample Solution:

Python Code:

import datetime
today = datetime.datetime.now()
day_of_year = (today - datetime.datetime(today.year, 1, 1)).days + 1
print(day_of_year)

Sample Output:

126

Flowchart:

Flowchart: Convert Year/Month/Day to Day of Year.

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to add 5 seconds with the current time.
Next: Write a Python program to get current time in milliseconds.

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.