pytz show all timezones code example
Example 1: pytz timezone list
import pytz
for tz in pytz.all_timezones:
print tz
Example 2: pandas remove timezone info
testdata['time'].dt.tz_localize(None)
import pytz
for tz in pytz.all_timezones:
print tz
testdata['time'].dt.tz_localize(None)