Working with Time Zones & Daylight Saving Time in pandas
Briefly

In most of the USA (plus a few other places in North America), Daylight Saving Time began on Sunday, March 12 at 2:00am.So what is Daylight Saving Time, why should you care about it, and how is it handled by pandas?Let's find out!Example data
To start, we need to create some example data.We'll use the date_range function to create 6 times starting on March 12 at 4:00am with an hourly frequency ( abbreviated as "H"), and then convert it to a pandas Series:
You might notice that nowhere in the data is the time zone specified!
Read at Data School
[
add
]
[
|
|
]