pandas如何获取当前时间
时间: 2024-07-02 22:00:38 浏览: 142
python+pandas+时间、日期以及时间序列处理方法
5星 · 资源好评率100%
在Pandas中,你可以使用`pd.Timestamp`或`datetime`模块来获取当前时间。这里有两种方法:
1. **直接使用pd.Timestamp**:
```python
import pandas as pd
current_time = pd.Timestamp.now()
print(current_time)
```
2. **使用datetime模块**:
```python
from datetime import datetime
current_time = datetime.now()
current_time_pandas = pd.to_datetime(current_time)
print(current_time_pandas)
```
两种方法都会返回一个包含当前日期和时间的Pandas Timestamp对象。
阅读全文