使用python获取当前时间至毫秒级,并且写出代码
时间: 2023-07-05 08:28:03 浏览: 166
python读出当前时间精度到秒的代码
可以使用 Python 标准库中的 datetime 和 time 模块来获取当前时间至毫秒。以下是示例代码:
```python
import datetime
import time
now = datetime.datetime.now()
micro_second = int(now.microsecond / 1000)
current_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) + f'.{micro_second:03d}'
print(current_time)
```
输出结果类似于:
```
2022-01-01 10:30:40.123
```
其中,now 对象是一个 datetime.datetime 类型的对象,可以使用 microsecond 属性获取当前时间的微秒数。由于题目要求的是毫秒级时间,因此需要将微秒数除以 1000 取整得到毫秒数。然后使用 time.strftime() 方法将当前时间格式化为需要的字符串格式,并将毫秒数拼接到字符串中。最后输出即可。
阅读全文