The video discusses the code to remove time zone. Also discusses the correct and incorrect ways to add a time zone in Pandas in Python.
Timeline
(Python 3.8)
00:00 - Welcome
00:10 - Outline of video
00:46 - Open Jupyter notebook
01:31 - Warning: Create datetime.datetime
02:06 - Warning: Error: add time zone to datetime.datetime using .tz_localize()
02:20 - Add UTC time zone to datetime.datetime using .utc.localize()
03:04 - Warning: Incorrect way to add time zone to datetime.datetime: tzinfo
03:40 - Warning: Correct way to add time zone to datetime.datetime: .localize()
04:33 - Compare time with same UTC value but different time zones
07:18 - Warning: Year = 2038+: Time zones may be not be correct
09:34 - Combine or addition of different time zones: output is UTC
12:50 - How to remove time zone from DatetimeIndex?
15:24 - Ending notes