Python Arrow Module: Create datetime from integers, floats and strings timestamps using arrow module
Write a Python program to create datetime from integers, floats and strings timestamps using arrow module.
Sample Solution:
Python Code:
import arrow
i = arrow.get(1857900545)
print("Date from integers: ")
print(i)
f = arrow.get(1857900545.234323)
print("\nDate from floats: ")
print(f)
s = arrow.get('1857900545')
print("\nDate from Strings: ")
print(s)
Sample Output:
Date from integers: 2028-11-15T11:29:05+00:00 Date from floats: 2028-11-15T11:29:05.234323+00:00 Date from Strings: 2028-11-15T11:29:05+00:00
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to get the current UTC datetime, local datetime and datetime of a given location using arrow module.
Next: Write a Python program to create a datetime from a given timezone-aware datetime using arrow module.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics