Python 提供了一个名为 DateTime 的模块来执行与日期和时间相关的所有操作。它具有一组丰富的函数,用于执行几乎所有处理时间的操作。需要先导入才能使用,它是python自带的,不需要单独安装。
在这里,我们处理一个特殊的日期对象。所以要将给定的日期转换为整数,我们可以按照以下方法。
方法 1:使用 100 的乘法
在此方法中,我们将日期的每个分量乘以 100 的倍数,然后将它们全部相加以将它们转换为整数。
Python3
# importing the datetime module
import datetime
# Getting todays date and time using now() of
# datetime class
current_date = datetime.datetime.now()
# Printing the current_date as the date object itself.
print("Original date and time object:", current_date)
# Retrieving each component of the date
# i.e year,month,day,hour,minute,second and
# Multiplying with multiples of 100
# year - 10000000000
# month - 100000000
# day - 1000000
# hour - 10000
# minute - 100
print("Date and Time in Integer Format:",
current_date.year*10000000000 +
current_date.month * 100000000 +
current_date.day * 1000000 +
current_date.hour*10000 +
current_date.minute*100 +
current_date.second)
输出:
Original date and time object:2021-08-10 15:51:25.695808 Date and Time in Integer Format:20210810155125
方法二:使用 datetime.strftime() 对象
在此方法中,我们使用 datetime 类的 strftime() 函数将其转换为可以使用 int() 函数转换为整数的字符串。
用法:strftime(format)
返回值:它返回日期或时间对象的字符串表示形式。
代码:
Python3
# importing the datetime module
import datetime
# Getting todays date and time using now() of datetime
# class
current_date = datetime.datetime.now()
# Printing the current_date as the date object itself.
print("Original date and time object:", current_date)
# Using the strftime() of datetime class
# which takes the components of date as parameter
# %Y - year
# %m - month
# %d - day
# %H - Hours
# %M - Minutes
# %S - Seconds
print("Date and Time in Integer Format:",
int(current_date.strftime("%Y%m%d%H%M%S")))
输出:
Original date and time object:2021-08-10 15:55:19.738126 Date and Time in Integer Format:20210810155519
相关用法
- Pandas DataFrame Integer转Datetime用法及代码示例
- Python datetime转date用法及代码示例
- Pandas DataFrame Float转Datetime用法及代码示例
- PHP DateTime转String用法及代码示例
注:本文由纯净天空筛选整理自magichat大神的英文原创作品 How to convert DateTime to integer in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。