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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/arrow/python-arrow-exercise-6.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics