日期的时间,现在蟒蛇

代码示例

36
0

N

import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))

29
0

N

from datetime import date

today = date.today()
print("Today's date:", today)
4
0

N

from datetime import date

today = date.today()
print("Today's date:", today)
1
0

N

from datetime import datetime
now = datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))
0
0

N

from datetime import datetime
now = datetime.now()
print("date and time now: ", now)

#you can also personalize how the formats, example:
dt = now.strftime("%d/%m/%Y %H:%M:%S")
print("date and time now: ", dt)

#the output will be
#date and time now:  22/12/2020 01:19:32
-1
0

N


from datetime import datetime
import pytz

tz_NY = pytz.timezone('America/New_York') 
datetime_NY = datetime.now(tz_NY)
print("NY time:", datetime_NY.strftime("%H:%M:%S"))

tz_London = pytz.timezone('Europe/London')
datetime_London = datetime.now(tz_London)
print("London time:", datetime_London.strftime("%H:%M:%S"))

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................