数学建模之数据分析【二一】:Python中基本日期时间操作

2024-08-26 13:36

本文主要是介绍数学建模之数据分析【二一】:Python中基本日期时间操作,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • 一、datetime.date()
  • 二、datetime.time()
  • 三、datetime.datetime()
  • 四、datetime.timedelta()
  • 五、datetime.tzinfo()
  • 六、datetime.timezone()

公众号:快乐数模
小红书:学数模使我快乐

Python 有一个名为 DateTime 的内置模块,可以以多种方式处理日期和时间。在本文中,我们将了解 Python 中的基本 DateTime 操作。

datetime 模块中有六个主要对象类及其各自的组件,如下所示:

  • datetime.date
  • datetime.time
  • datetime.datetime
  • datetime.tzinfo
  • datetime.timedelta
  • datetime.timezone
    现在我们将看到上述 datetime 模块下每个函数的程序。

一、datetime.date()

我们可以从日期类生成日期对象。日期对象表示具有年、月、日的日期。

from datetime import datecurrent = date.today() # print current year, month, and year individually
print("Current Day is :", current.day)
print("Current Month is :", current.month)
print("Current Year is :", current.year)print("\n")
print("Let's print date, month and year in different-different ways")
format1 = current.strftime("%m/%d/%y")print("format1 =", format1)format2 =  current.strftime("%b-%d-%Y")
print("format2 =", format2)format3 = current.strftime("%d/%m/%Y")print("format3 =", format3)format4 =  current.strftime("%B %d, %Y")print("format4 =", format4)

在这里插入图片描述

二、datetime.time()

从时间类生成时间对象代表当地时间。

  • hour
  • minute
  • second
  • microsecond
  • tzinfo

语法:datetime.time(hour, minute, second, microsecond)

from datetime import time
defaultTime = time()print("default_hour =", defaultTime.hour)
print("default_minute =", defaultTime.minute)
print("default_second =", defaultTime.second)
print("default_microsecond =", defaultTime.microsecond)time1 = time(10, 5, 25)
print("time_1 =", time1)time2 = time(hour=10, minute=5, second=25)
print("time_2 =", time2)time3 = time(hour=10, minute=5, second=25, microsecond=55)
print("time_3 =", time3)

在这里插入图片描述

三、datetime.datetime()

datetime.datetime() 模块显示日期和时间的组合。

  • year
  • month
  • day
  • hour
  • minute
  • second,
  • microsecond
  • tzinfo
    语法:datetime.datetime( year, month, day) or datetime.datetime(year, month, day, hour, minute, second, microsecond)

使用strftime()以不同方法获得当前日期。
strftime(“%d”) 提供当前天数
strftime(“%m”) 提供当前月份
strftime(“%Y”) 提供当前年份
strftime(“%H:%M:%S”) 以小时、分钟、秒的格式提供当前日期
strftime(“%m/%d/%Y, %H:%M:%S”) 提供日期和时间

from datetime import datetime
#打印当前时间
current = datetime.now()
print(current)
print("\n")
print("print each term individually")
#打印当前天
day = current.strftime("%d")
print("day:", day)
#打印当前月
month = current.strftime("%m")
print("month:", month)
#打印当前年
year = current.strftime("%Y")
print("year:", year)
#打印当前的时分秒
time = current.strftime("%H:%M:%S")
print("time:", time)
#打印当前的月日年,时分秒
print("\n")
print("printing date and time together")
date_time = current.strftime("%m/%d/%Y, %H:%M:%S")
print("date and time:", date_time)
print("\n")
#打印时间戳,记录由时间戳到现在的值
timestamp = 1615797322
date_time = datetime.fromtimestamp(timestamp)
#表示使用本地设置的日期和时间的格式
time_1 = date_time.strftime("%c")
print("first_output:", time_1)
# 日期短格式
time_2 = date_time.strftime("%x")
print("second_output:", time_2)
#日期长格式
time_3 = date_time.strftime("%X")
print("third_output:", time_3)print("\n")
manual = datetime(2021, 3, 28, 23, 55, 59, 342380)
print("year =", manual.year)
print("month =", manual.month)
print("hour =", manual.hour)
print("minute =", manual.minute)
print("timestamp =", manual.timestamp())

在这里插入图片描述

四、datetime.timedelta()

它显示以微秒分辨率表达两个日期、时间或日期时间实例之间的差异的持续时间。

这里我们实现了一些基本功能,并打印了过去和未来的日期。此外,我们还将打印 timedelta max、min 和resolution 的其他一些属性,分别显示最大日期和时间、最小日期和时间以及不相等 timedelta 对象之间的最小可能差异。这里我们还将对两个不同的日期和时间应用一些算术运算。

from datetime import timedelta, datetimepresent_date_with_time = datetime.now()print("Present Date :", present_date_with_time)ten_days_after = present_date_with_time + timedelta(days=10)
print('Date after 10 days :', ten_days_after)ten_days_before = present_date_with_time - timedelta(days=10)
print('Date before 10 days :', ten_days_before)one_year_before_today = present_date_with_time + timedelta(days=365)
print('One year before present Date :', one_year_before_today)one_year_after_today = present_date_with_time - timedelta(days=365)
print('One year before present Date :', one_year_after_today)print("print some other attributes of timedelta\n")
print("Max : ", timedelta.max)
print("Min : ", timedelta.min)
print("Resolution: ", timedelta.resolution)
print('Total number of seconds in an year :',timedelta(days=365).total_seconds())
print("\nApply some operations on timedelta function\n")
time_after_one_min = present_date_with_time + timedelta(seconds=10) * 6
print('Time after one minute :', time_after_one_min)
print('Timedelta absolute value :', abs(timedelta(days=+20)))
print('Timedelta string representation :', str(timedelta(days=5,seconds=40, hours=20, milliseconds=355)))
print('Timedelta object representation :', repr(timedelta(days=5,seconds=40, hours=20, milliseconds=355)))

在这里插入图片描述

五、datetime.tzinfo()

时区信息对象的抽象基类。它们被 datetime 和 time 类用来提供可自定义的时间调整概念。
tzinfo 基类有以下四种方法:

  • utcoffset(self, dt):返回作为参数传递的 datetime 实例的偏移量
  • dst(self, dt): dst 代表夏令时。dst 表示在夏季将时钟拨快 1 小时,以便根据时钟黑夜来得更晚。它设置为开启或关闭。它根据以下元素进行检查:
    (dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second, dt.weekday(), 0, 0)
  • tzname(self, dt):返回一个 Python 字符串对象。它用于查找传递的 datetime 对象的时区名称。
  • fromutc(self, dt) :此函数返回等效的本地时间,并采用 UTC 中的对象日期和时间。它主要用于调整日期和时间。它从默认的 datetime.astimezone() 实现中调用。dt.tzinfo 将作为 self 传递,dst 日期和时间数据将作为等效的本地时间返回。
    注意:如果 dt.tzinfo 不是自身或/且 dst() 为 None,则会引发 ValueError。
from datetime import datetime, timedelta
from pytz import timezone
import pytztime_zone = timezone('Asia/Calcutta')normal = datetime(2021, 3, 16)
ambiguous = datetime(2021, 4, 16, 23, 30)print("Operations on normal datetime")
print(time_zone.utcoffset(normal, is_dst=True))
print(time_zone.dst(normal, is_dst=True))
print(time_zone.tzname(normal, is_dst=True))print(time_zone.utcoffset(normal, is_dst=False))
print(time_zone.dst(normal, is_dst=False))
print(time_zone.tzname(normal, is_dst=False))print("\n")
print("Operations on ambiguous datetime")
print(time_zone.utcoffset(ambiguous, is_dst=True))
print(time_zone.dst(ambiguous, is_dst=True))
print(time_zone.tzname(ambiguous, is_dst=True))print(time_zone.utcoffset(ambiguous, is_dst=False))
print(time_zone.dst(ambiguous, is_dst=False))
print(time_zone.tzname(ambiguous, is_dst=False))

在这里插入图片描述

六、datetime.timezone()

描述:它是一个将 tzinfo 抽象基类实现为相对于 UTC 的固定偏移量的类。

语法: datetime.timezone()

from datetime import datetime, timedelta
from pytz import timezone
import pytzutc = pytz.utc
print(utc.zone)india = timezone('Asia/Calcutta')
print(india.zone)eastern = timezone('US/Eastern')
print(eastern.zone)time_format = '%Y-%m-%d %H:%M:%S %Z%z'loc_dt = india.localize(datetime(2021, 3, 16, 6, 0, 0))
loc_dt = india.localize(datetime(2021, 3, 16, 6, 0, 0))
print(loc_dt.strftime(time_format))eastern_dt = loc_dt.astimezone(eastern)
print(eastern_dt.strftime(time_format))print(datetime(2021, 3, 16, 12, 0, 0, tzinfo=pytz.utc).strftime(time_format))before_dt = loc_dt - timedelta(minutes=10)
print(before_dt.strftime(time_format))
print(india.normalize(before_dt).strftime(time_format))after_dt = india.normalize(before_dt + timedelta(minutes=20))
print(after_dt.strftime(time_format))

在这里插入图片描述

学习geeksforgeeks网站内容总结

这篇关于数学建模之数据分析【二一】:Python中基本日期时间操作的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1108713

相关文章

使用Python绘制蛇年春节祝福艺术图

《使用Python绘制蛇年春节祝福艺术图》:本文主要介绍如何使用Python的Matplotlib库绘制一幅富有创意的“蛇年有福”艺术图,这幅图结合了数字,蛇形,花朵等装饰,需要的可以参考下... 目录1. 绘图的基本概念2. 准备工作3. 实现代码解析3.1 设置绘图画布3.2 绘制数字“2025”3.3

Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单

《Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单》:本文主要介绍Springboot的ThreadPoolTaskScheduler线... 目录ThreadPoolTaskScheduler线程池实现15分钟不操作自动取消订单概要1,创建订单后

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

Python中构建终端应用界面利器Blessed模块的使用

《Python中构建终端应用界面利器Blessed模块的使用》Blessed库作为一个轻量级且功能强大的解决方案,开始在开发者中赢得口碑,今天,我们就一起来探索一下它是如何让终端UI开发变得轻松而高... 目录一、安装与配置:简单、快速、无障碍二、基本功能:从彩色文本到动态交互1. 显示基本内容2. 创建链

Java调用Python代码的几种方法小结

《Java调用Python代码的几种方法小结》Python语言有丰富的系统管理、数据处理、统计类软件包,因此从java应用中调用Python代码的需求很常见、实用,本文介绍几种方法从java调用Pyt... 目录引言Java core使用ProcessBuilder使用Java脚本引擎总结引言python

SpringBoot操作spark处理hdfs文件的操作方法

《SpringBoot操作spark处理hdfs文件的操作方法》本文介绍了如何使用SpringBoot操作Spark处理HDFS文件,包括导入依赖、配置Spark信息、编写Controller和Ser... 目录SpringBoot操作spark处理hdfs文件1、导入依赖2、配置spark信息3、cont

python 字典d[k]中key不存在的解决方案

《python字典d[k]中key不存在的解决方案》本文主要介绍了在Python中处理字典键不存在时获取默认值的两种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录defaultdict:处理找不到的键的一个选择特殊方法__missing__有时候为了方便起见,

使用Python绘制可爱的招财猫

《使用Python绘制可爱的招财猫》招财猫,也被称为“幸运猫”,是一种象征财富和好运的吉祥物,经常出现在亚洲文化的商店、餐厅和家庭中,今天,我将带你用Python和matplotlib库从零开始绘制一... 目录1. 为什么选择用 python 绘制?2. 绘图的基本概念3. 实现代码解析3.1 设置绘图画

Python pyinstaller实现图形化打包工具

《Pythonpyinstaller实现图形化打包工具》:本文主要介绍一个使用PythonPYQT5制作的关于pyinstaller打包工具,代替传统的cmd黑窗口模式打包页面,实现更快捷方便的... 目录1.简介2.运行效果3.相关源码1.简介一个使用python PYQT5制作的关于pyinstall

使用Python实现大文件切片上传及断点续传的方法

《使用Python实现大文件切片上传及断点续传的方法》本文介绍了使用Python实现大文件切片上传及断点续传的方法,包括功能模块划分(获取上传文件接口状态、临时文件夹状态信息、切片上传、切片合并)、整... 目录概要整体架构流程技术细节获取上传文件状态接口获取临时文件夹状态信息接口切片上传功能文件合并功能小