w3resource

Python Arrow Module: Extract year, month and date value from current datetime using arrow module

Arrow Module: Exercise-6 with Solution

Write a Python program to extract year, month and date value from current datetime using arrow module.

Sample Solution:

Python Code:

import arrow
a = arrow.utcnow()
print("Year:")
print(a.year)
print("\nMonth:")
print(a.month)
print("\nDate:")
print(a.day)

Sample Output:

Year:
2019

Month:
6

Date:
1

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to get a datetime or timestamp representation from current datetime.
Next: Write a Python program to get date and time properties from datetime function using arrow module.

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.