博客
关于我
datetime.timedelta类型转换为int类型
阅读量:726 次
发布时间:2019-03-22

本文共 377 字,大约阅读时间需要 1 分钟。

设置日期并计算时差

在Python中,我们可以通过datetime库轻松设置日期并计算两个日期之间的时差。以下是详细的实现步骤:

import datetimeprev_day = datetime.datetime(2017, 12, 31)cur_day = datetime.datetime(2018, 1, 31)diff = cur_day - prev_day

运行此代码,可以看到diff的具体结果:

31 days, 0:00:00

如果要将diff结果转换为整数形式,可以使用diff.days属性:

print(diff.days)print(type(diff.days))

输出结果如下:

31

通过上述方法,我们可以清楚地得到两个日期之间的时差,并以整数形式存储结果。这一方法简单且高效,是处理日期计算的常用选择。

转载地址:http://dvggz.baihongyu.com/

你可能感兴趣的文章
NLP学习笔记:使用 Python 进行NLTK
查看>>
NLP的神经网络训练的新模式
查看>>
NLP采用Bert进行简单文本情感分类
查看>>
NLP问答系统:使用 Deepset SQUAD 和 SQuAD v2 度量评估
查看>>
NLP:使用 SciKit Learn 的文本矢量化方法
查看>>
Nmap扫描教程之Nmap基础知识
查看>>
Nmap端口扫描工具Windows安装和命令大全(非常详细)零基础入门到精通,收藏这篇就够了
查看>>
NMAP网络扫描工具的安装与使用
查看>>
NMF(非负矩阵分解)
查看>>
nmon_x86_64_centos7工具如何使用
查看>>
NN&DL4.1 Deep L-layer neural network简介
查看>>
NN&DL4.3 Getting your matrix dimensions right
查看>>
NN&DL4.8 What does this have to do with the brain?
查看>>
nnU-Net 终极指南
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
NO 157 去掉禅道访问地址中的zentao
查看>>
no available service ‘default‘ found, please make sure registry config corre seata
查看>>
no connection could be made because the target machine actively refused it.问题解决
查看>>
No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
查看>>
No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
查看>>