在Python中,日期,时间和日期时间类提供了许多函数来处理日期,时间和时间间隔。 日期和日期时间是Python中的对象,因此在操作它们时,实际上是在操作对象,而不是字符串或时间戳。 每当您操纵日期或时间时,都需要导入datetime函数。
Python中的datetime类分为5个主要类。
步骤1)在运行日期时间代码之前,重要的是导入日期时间模块,如下面的屏幕快照所示。
这些import语句是Python库中预定义的函数,可让您无需编写任何代码即可操纵日期和时间。
在执行日期时间代码之前,请考虑以下几点
from datetime import date
此行告诉Python解释器,从datetime模块导入date类我们不会为此日期函数编写代码,而只是将其导入供我们使用
步骤2)接下来,我们创建日期对象的实例。
步骤3)接下来,我们打印日期并运行代码。
输出是预期的。
date.today函数具有与其关联的多个属性。 我们可以打印单独的日/月/年以及其他内容
让我们看一个例子
今天的星期几Weekday
date.today()函数还会为您提供星期几Weekday 。 这是星期几Weekday 表,其星期一从0开始,星期日从6开始
Weekday Number对于其索引取决于星期几的阵列很有用。
步骤1)与日期对象一样,我们也可以在Python中使用“ DATETIME OBJECTS”。 它以小时,分钟,秒和毫秒为单位给出日期以及时间。
当我们为datetime执行代码时,它将为输出提供当前日期和时间。
步骤2)使用“ DATETIME OBJECT”,您还可以调用时间类别。
假设我们只想打印当前时间而不显示日期。
t = datetime.time(datetime.now())
这会给我时间。 因此,让我们运行该程序。
好的,所以您可以看到这里有日期和时间。 然后下一行,我只有时间了
步骤3)我们将工作日索引器应用到工作日的arrayList中,以了解今天是星期几
根据当前工作日的不同,为工作日操作员(wd)分配(0-6)号中的数字。 在这里,我们声明了几天的列表数组(星期一,星期二,星期三…星期日)。
使用该索引值可以知道是哪一天。 在我们的例子中,它是#2,代表星期三,因此在输出中将输出“哪个星期三”。
这是现在使用datetime获取当前日期和时间的完整代码
from datetime import date
from datetime import time
from datetime import datetime
def main():
##DATETIME OBJECTS
#Get today's date from datetime class
today=datetime.now()
#print (today)
# Get the current time
#t = datetime.time(datetime.now())
#print "The current time is", t
#weekday returns 0 (monday) through 6 (sunday)
wd=date.weekday(today)
#Days start at 0 for monday
days= ["monday","tuesday","wednesday","thursday","friday","saturday","sunday"]
print("Today is day number %d" % wd)
print("which is a " + days[wd])
if __name__== "__main__":
main()
到目前为止,我们已经了解了如何在Python中使用datetime和date对象。 我们将进一步前进,并学习如何使用格式化函数来格式化时间和日期。
步骤1)首先,我们将看到一个简单的年份格式设置步骤。 最好通过一个例子来理解。
步骤2)现在,如果将(“%Y”)用小写字母替换,即(“%y)并执行代码,则输出将仅显示(18),而不显示(2018)。 显示在下面的屏幕截图中
步骤3)Strf函数可以分别声明日期,日,月和年。 同样,在strftime函数中对控制代码进行小的更改后,您也可以设置文本样式的格式。
在strftime函数中,如果将(%a)替换为大写字母A,即(%A),则输出将显示为“ Firday”(星期五),而不仅仅是缩写“ Fri”。
步骤4)借助“ Strftime”函数,我们还可以检索本地系统时间,日期或两者。
在输出中,您可以看到预期的结果
步骤5)“ strftime函数”允许您以24小时或12小时的任何格式调用时间。
只需定义控制代码(例如%I / H表示小时,%M表示分钟,%S表示秒),就可以调用不同格式的时间
声明了12小时的时间[print now.strftime(“%I:%M:%S%P)]
声明了24小时为时间[print now.strftime(“%H:%M”)]
这是将datetime转换为String对象的完整代码。
#
#Example file for formatting time and date output
#
from datetime import datetime
def main():
#Times and dates can be formatted using a set of predefined string
#Control codes
now= datetime.now() #get the current date and time
#%c - local date and time, %x-local's date, %X- local's time
print(now.strftime("%c"))
print(now.strftime("%x"))
print(now.strftime("%X"))
##### Time Formatting ####
#%I/%H - 12/24 Hour, %M - minute, %S - second, %p - local's AM/PM
print(now.strftime("%I:%M:%S %p")) # 12-Hour:Minute:Second:AM
print(now.strftime("%H:%M")) # 24-Hour:Minute
if __name__== "__main__":
main()
使用timedelta对象,您可以估算未来和过去的时间。 换句话说,预测任何特殊的日期,日期或时间都是一个时间跨度。
请记住,此函数不是用于打印时间或日期,而是用于计算将来或过去的内容。 让我们看一个例子,以更好地理解它。
步骤1)要运行Timedelta对象,您需要先声明import语句,然后执行代码
为timedelta编写导入语句
现在编写代码以从时间增量中打印出对象,如屏幕截图所示
运行代码。 timedelta代表365天,8小时15分钟的跨度,并且打印相同
步骤2)让我们获取今天的日期和时间,以检查我们的导入语句是否运行良好。 执行代码后,它会打印出今天的日期,这意味着我们的导入语句运行良好
步骤3)我们将看到如何通过增量对象检索一年之后的日期。 当我们运行代码时,它将给出预期的输出。
步骤4)如何使用时间增量从当前日期和时间计算未来日期的另一个示例
步骤5)让我们看一个更复杂的例子。 我想确定新年过后的几天。 这是我们将如何进行
使用today = date.today()我们将获得今天的日期
我们知道新年总是1月1日,但是年份可能会有所不同。 使用nyd = date(today.year,1,1),我们将新年度存储在变量nyd中
如果nyd <today:比较当前日期是否大于新年。 如果是,则进入while循环
((today-nyd).days)给出当前日期和新年之间的差异(以DAYS为单位)
输出显示“元旦已经过去了11天”。
这是完整的工作代码
#
# Example file for working with timedelta objects
#
from datetime import date
from datetime import time
from datetime import datetime
from datetime import timedelta
# construct a basic timedelta and print it
print (timedelta(days=365, hours=8, minutes=15))
# print today's date
print ("today is: " + str(datetime.now()))
# print today's date one year from now
print ("one year from now it will be:" + str(datetime.now() + timedelta(days=365)))
# create a timedelta that uses more than one argument
# print (in one week and 4 days it will be " + str(datetime.now() + timedelta(weeks=1, days=4)))
# How many days until New Year's Day?
today = date.today() # get todays date
nyd = date(today.year, 1, 1) # get New Year Day for the same year
# use date comparison to see if New Year Day has already gone for this year
# if it has, use the replace() function to get the date for next year
if nyd < today:
print ("New Year day is already went by %d days ago" % ((today - nyd).days))
from datetime import date
from datetime import time
from datetime import datetime
def main():
##DATETIME OBJECTS
#Get today's date from datetime class
today=datetime.now()
#print today
# Get the current time
#t = datetime.time(datetime.now())
#print "The current time is", t
#weekday returns 0 (monday) through 6 (sunday)
wd = date.weekday(today)
#Days start at 0 for monday
days= ["monday","tuesday","wednesday","thursday","friday","saturday","sunday"]
print "Today is day number %d" % wd
print "which is a " + days[wd]
if __name__== "__main__":
main()
#
#Example file for formatting time and date output
#
from datetime import datetime
def main():
#Times and dates can be formatted using a set of predefined string
#Control codes
now= datetime.now() #get the current date and time
#%c - local date and time, %x-local's date, %X- local's time
print now.strftime("%c")
print now.strftime("%x")
print now.strftime("%X")
##### Time Formatting ####
#%I/%H - 12/24 Hour, %M - minute, %S - second, %p - local's AM/PM
print now.strftime("%I:%M:%S %p") # 12-Hour:Minute:Second:AM
print now.strftime("%H:%M") # 24-Hour:Minute
if __name__== "__main__":
main()
#
# Example file for working with timedelta objects
#
from datetime import date
from datetime import time
from datetime import datetime
from datetime import timedelta
# construct a basic timedelta and print it
print timedelta(days=365, hours=8, minutes=15)
# print today's date
print "today is: " + str(datetime.now())
# print today's date one year from now
print "one year from now it will be:" + str(datetime.now() + timedelta(days=365))
# create a timedelta that uses more than one argument
# print "in one week and 4 days it will be " + str(datetime.now() + timedelta(weeks=1, days=4))
# How many days until New Year's Day?
today = date.today() # get todays date
nyd = date(today.year, 1, 1) # get New Year Day for the same year
# use date comparison to see if New Year Day has already gone for this year
# if it has, use the replace() function to get the date for next year
if nyd < today:
print "New Year day is already went by %d days ago" % ((today - nyd).days)
为了以简单和复杂的方式处理日期和时间,datetime模块提供了不同的类或类别,例如
使用日期时间对象
使用“ str f时间函数”格式化超时
Timedelta对象