반응형
질문
I would like to know what are all the possible values for the timezone argument in the Python library pytz. How to do it?
답변
pytz.all_timezones
를 사용하여 사용 가능한 모든 시간대를 나열할 수 있습니다:
In [40]: import pytz
In [41]: pytz.all_timezones
Out[42]:
['Africa/Abidjan',
'Africa/Accra',
'Africa/Addis_Ababa',
...]
pytz.common_timezones
도 있습니다:
In [45]: len(pytz.common_timezones)
Out[45]: 403
In [46]: len(pytz.all_timezones)
Out[46]: 563
반응형
댓글