python处理毫秒
时间: 2023-02-08 17:06:51 浏览: 224
在 Python 中,可以使用 `datetime` 模块来处理毫秒。
首先,可以使用 `datetime.datetime.now()` 来获取当前时间。该函数返回一个 `datetime` 对象,其中包含了当前的日期和时间。
```python
from datetime import datetime
current_time = datetime.now()
print(current_time)
```
接下来,可以使用 `datetime.microsecond` 属性来获取当前时间的毫秒部分。
```python
milliseconds = current_time.microsecond / 1000
print(milliseconds)
```
还可以使用 timedelta来处理时间间的加减,来得到毫秒
```python
from datetime import timedelta
delta = timedelta(microseconds=1000)
current_time + delta
```
此外也可以用 time 来处理时间,在time 中用到的是浮点数表示,所以有精度问题。
```python
import time
current_time = time.time()
print(current_time)
```
如果你想要以毫秒为单位显示时间,可以使用 `time.strftime` 函数来格式化时间。
```python
formatted_time = time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(current_time))
print(formatted_time)
```
阅读全文