如何使用Python获取当前时间?
时间: 2023-06-29 15:11:16 浏览: 90
Python获取当前时间的方法
您可以使用Python内置的`datetime`模块获取当前时间。以下是一个示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:", now)
```
这将输出当前时间,格式为`年-月-日 时:分:秒.毫秒`。您可以使用`strftime()`函数自定义时间格式,例如:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:", now.strftime("%Y-%m-%d %H:%M:%S"))
```
这将输出当前时间,格式为`年-月-日 时:分:秒`。更多关于`strftime()`函数的时间格式化选项请参考Python官方文档。
阅读全文