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.
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-7.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics