w3resource

Python Arrow Module: Get date and time properties from datetime function using arrow module

Arrow Module: Exercise-7 with Solution

Write a Python program to get date and time properties from datetime function using arrow module.

Sample Solution:

Python Code:

import arrow
a = arrow.utcnow()
print("Current date:")
print(a.date())
print("\nCurrent time:")
print(a.time())

Sample Output:

Current date:
2019-06-01

Current time:
08:48:13.230800

Python Code Editor:

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

Previous: Write a Python program to extract year, month and date value from current datetime using arrow module.
Next: Write a Python program to replace hour, minute, day, month, year and timezone with specified value of current datetime using arrow.

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.