Is the a way to list All timezones for Time and Datetime library in Python
so it can be used as options to get time in respective timezone
like in the example
from datetime import datetime
from pytz import timezone
south_africa = timezone('Africa/Johannesburg')
sa_time = datetime.now(south_africa)
print sa_time.strftime('%Y-%m-%d_%H-%M-%S')