Python DateTime astimezone() 方法
astimezone()函数用于根据指定的时区参数 tz 返回一个 DateTime 实例。
注意:根据 tz 参数,返回的 DateTime 实例具有新的 UTC 偏移值。如果该函数不带参数tz,则返回的DateTime对象将具有本地日期、时间和时区。
Syntax: astimezone(tz=None)
Parameters: This function accepts an optional parameter that is illustrated below:
- tz: This is the specified timezone.
Return values: This function returns a datetime instance according to the specified time zone parameter tz. If the parameter tz is not specified then this function returns the local date, time and the time zone.
示例 1:在下面的示例中, astimezone()函数将新加坡时区对象作为其参数。新加坡 timedelta()函数以 5 小时为参数,其返回值作为 timezone()函数的参数。通过这种方式,为函数astimezone() 初始化 DateTime 和新加坡时区对象,以返回其相应的日期时间实例。
Python3
# Python3 code for getting
# a datetime instance according
# to the specified time zone parameter tz
# Importing datetime module
import datetime
# Specifying Singapore timedelta and timezone
# object
sgtTimeDelta = datetime.timedelta(hours=5)
sgtTZObject = datetime.timezone(sgtTimeDelta,
name="SGT")
# Specifying a datetime along with Singapore
# timezone object
d1 = datetime.datetime(2021, 8, 4, 10,
00, 00, 00, sgtTZObject)
# Calling the astimezone() function over the above
# specified Singapore timezone
d2 = d1.astimezone(sgtTZObject)
# Printing a datetime instance as per the above
# specified Singapore timezone
print("Singapore time from a datetime instance:{}".format(d2))
Python3
# Python3 code for getting
# a datetime instance according
# to the specified time zone parameter tz
# Importing datetime module
import datetime
# Calling now() function to return
# current datetime
d1 = datetime.datetime.now()
# Calling the astimezone() function without
# any timezone parameter
d2 = d1.astimezone()
# Printing the local current date, time and
# timezone
print(format(d2))
输出:
Singapore time from a datetime instance:2021-08-04 10:00:00+05:00
示例 2:在下面的示例中, astimezone()函数不接受任何参数,因此该函数返回具有本地当前日期、时间和时区的 DateTime 对象。由于 datetime.now()函数,这里返回当前日期、时间和时区。
蟒蛇3
# Python3 code for getting
# a datetime instance according
# to the specified time zone parameter tz
# Importing datetime module
import datetime
# Calling now() function to return
# current datetime
d1 = datetime.datetime.now()
# Calling the astimezone() function without
# any timezone parameter
d2 = d1.astimezone()
# Printing the local current date, time and
# timezone
print(format(d2))
输出:
2021-08-04 06:41:15.128046+00:00