简体   繁体   中英

Python strftime with timezone offset

is it possible to format datetime object with strftime with timezone offset?

I do have unix timestamp let say 1658123953 converted to python timezone aware datetime object

datetime.datetime(2022, 7, 18, 7, 59, 13, tzinfo=<DstTzInfo 'Europe/Bratislava' CEST+2:00:00 DST>)

and I would like to apply strftime('%H:%M:%S') on datetime object to get formatted string with timezone offset added.

I need it in this format

'09:59:13' # with timezone offset added

but I was only able to get this

'07:59:13 +02:00' # not correct format for my case

Your UNIX Timestamp is

1658123953

in UTC this is

Mon Jul 18 2022 05:59:13

So this is

07:59:13 +02:00

the Right Timezone Aware Value

You can Check the Unix Timestamp https://www.unixtimestamp.com/index.php

The Timezone Offset is already added in youre String the "+02:00" is just a reference to the Timeoffset

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM