Python中日期转整型
时间: 2024-02-16 21:30:54 浏览: 143
Python程序实现输入一个日期计算当前日期是当年的中第几天
在Python中,可以使用datetime模块中的strftime()函数将日期转换为整数。例如:
```python
import datetime
date_str = "2022-01-01"
date_obj = datetime.datetime.strptime(date_str, "%Y-%m-%d")
timestamp = int(date_obj.timestamp())
print(timestamp)
```
输出:
```
1640985600
```
其中,strptime()函数将日期字符串解析为datetime对象,而timestamp()函数返回该对象的时间戳,即从1970年1月1日0时0分0秒开始到该时间的秒数。最后使用int()函数将时间戳转换为整数。
阅读全文