def get_time_zone(country_code): """ Return time zone for country. """ try: return country_timezones[country_code][0] except KeyError: return None