如何使用Python获取当前时间?
时间: 2023-07-04 14:24:09 浏览: 94
可以使用Python内置的datetime模块来获取当前时间。具体实现如下:
```python
import datetime
now = datetime.datetime.now()
print("Current date and time: ")
print(now.strftime("%Y-%m-%d %H:%M:%S"))
```
输出结果类似于:
```
Current date and time:
2021-08-17 14:36:42
```
其中,`now()`函数返回当前日期时间对象,`strftime()`函数将日期时间对象格式化为字符串。`"%Y-%m-%d %H:%M:%S"`是日期时间字符串的格式,即年-月-日 时:分:秒。
相关问题
使用python获取当前的时间?
可以使用Python中的datetime模块获取当前时间,代码如下:
```
import datetime
now = datetime.datetime.now()
print("当前时间为:")
print(now)
```
输出:
```
当前时间为:
2021-10-27 11:25:35.526105
```
如何在 Python 中获取当前时间?
在 Python 中获取当前时间可以使用 datetime 模块中的 datetime 类。可以通过以下代码获取当前时间:
```
from datetime import datetime
now = datetime.now()
print("当前时间为:", now)
```
输出结果如下:
```
当前时间为: 2022-03-11 15:34:30.123456
```
其中,now() 方法会返回一个 datetime 对象,包含了当前日期和时间的信息。你也可以通过调用该对象的各种方法来获取特定的信息,例如:
```
year = now.year
month = now.month
day = now.day
hour = now.hour
minute = now.minute
second = now.second
```
阅读全文