w3resource

Python Arrow Module: Get the daylight savings time adjustment using arrow module

Arrow Module: Exercise-15 with Solution

Write a Python program to get the daylight savings time adjustment using arrow module.

Sample Solution:

Python Code:

import arrow
print("Daylight savings time adjustment:")
a = arrow.utcnow().dst()
print(a)

Sample Output:

Daylight savings time adjustment:
0: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 create a ctime formatted representation of the date and time using arrow module.
Next: Write a Python program to create a floating-point representation of the Arrow object, in UTC time using arrow module.

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.