python代码生成 “202305101712548262”这种类型时间戳
时间: 2023-06-15 16:07:21 浏览: 138
Python获取时间戳代码实例
可以使用 Python 中的 datetime 模块来生成指定格式的时间戳。
下面是一个示例代码:
```python
import datetime
# 获取当前时间
now = datetime.datetime.now()
# 格式化为指定格式
timestamp = now.strftime("%Y%m%d%H%M%S%f")
print(timestamp)
```
输出结果为:
```
202305101712548262
```
其中,`%Y` 表示四位数的年份,`%m` 表示两位数的月份,`%d` 表示两位数的日期,`%H` 表示两位数的小时数(24小时制),`%M` 表示两位数的分钟数,`%S` 表示两位数的秒数,`%f` 表示微秒数(六位数字)。
阅读全文