Код: Выделить всё
from PySide6.QtCore import Qt, QDateTime, QTimeZone
import datetime
qdatetime = QDateTime.currentDateTime()
print(qdatetime.offsetFromUtc())
qdatetime.setTimeZone(QTimeZone.UTC)
print(qdatetime.toString(Qt.ISODate))
print(qdatetime.offsetFromUtc())
pt = qdatetime.toPython()
print(pt)
print(pt.tzinfo)
ptt = pt.replace(tzinfo = datetime.timezone.utc)
print(ptt.tzinfo)
print(ptt)
Код: Выделить всё
3600
2025-01-06T18:56:43Z
0
2025-01-06 18:56:43.251000
None
UTC
2025-01-06 18:56:43.251000+00:00
Подробнее здесь: https://stackoverflow.com/questions/793 ... osing-time