Python获取当前时间的方法
时间: 2023-11-05 09:58:23 浏览: 68
获取当前时间的方法可以使用Python内置的datetime模块,具体步骤如下:
1. 导入datetime模块
```python
import datetime
```
2. 使用datetime模块的now()函数获取当前时间
```python
now = datetime.datetime.now()
```
3. 可以使用strftime()函数将时间格式化成字符串格式
```python
time_str = now.strftime('%Y-%m-%d %H:%M:%S')
```
完整代码如下:
```python
import datetime
now = datetime.datetime.now()
time_str = now.strftime('%Y-%m-%d %H:%M:%S')
print("当前时间为:", time_str)
```
输出结果类似于:
```
当前时间为: 2021-09-20 14:30:00
```
相关问题
python获取当前时间
您好!关于您的问题,可以使用Python中的datetime模块获取当前时间。具体的代码如下:
```
import datetime
now = datetime.datetime.now()
print("当前时间为:", now)
```
通过以上代码,即可获取当前时间并输出。希望能帮到您。
Python获取当前时间
可以使用Python的内置模块datetime来获取当前时间。以下是一个示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间:", now)
```
输出结果会类似于:
```
当前时间: 2021-07-05 16:30:00.123456
```
其中,now()方法返回一个datetime对象,包含当前的日期和时间信息。你也可以通过datetime对象的属性来获取年、月、日、时、分、秒等具体时间信息。
阅读全文