w3resource

Python Arrow Module: Create a floating-point representation of the Arrow object, in UTC time using arrow module

Arrow Module: Exercise-16 with Solution

Write a Python program to create a floating-point representation of the Arrow object, in UTC time using arrow module.

Sample Solution:

Python Code:

import arrow
a = arrow.utcnow()
print("Current Datetime:")
print(a)
print("\nFloating-point representation of the said Arrow object:")
f = arrow.utcnow().float_timestamp
print(f) 

Sample Output:

Current Datetime:
2019-06-01T11:24:13.287000+00:00

Floating-point representation of the said Arrow object:
1559388253.288

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 daylight savings time adjustment using arrow module.
Next: Write a Python program to create a new Arrow object, representing the "floor" of the timespan of the Arrow object in a given timeframe using arrow module. The timeframe can be any datetime property like day, hour, minute.

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.