Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
519 views
in Technique[技术] by (71.8m points)

python - Get timezone abbreviation from UTC offset

I have the UTC offset in my DB for the users:

+5:30 

How can I get the timezone abbreviation from this UTC offset using Python?

Such as

+5:30 => IST

Is it even possible to do this using Python?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This is not possible.

  • There are many time zones that share the same offset. See this Wikipedia article for details.

  • There is no uniform standard for time zone abbreviations. There are some listed here and here, and you can see that there are duplicates in both directions.

    For example:

    • CST might be -5:00, -6:00, +8:00, +9:30 or +10:30.
    • -10:00 could be HST, HAST, TAHT, or CKT

Read also the section "Time Zone != Offset" of the timezone tag wiki here on StackOverflow.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...