python - Convert pandas timezone-aware DateTimeIndex to . . .
The timezone information is used only for display purposes when printing the timezone to the screen. At display time, the data is offset appropriately and +01:00 (or similar) is added to the string. Stripping off the tz_info value (using tz_convert(tz=None)) doesnt doesnt actually change the data that represents the naive part of the timestamp.
more