python获取当前时间精确到秒
时间: 2023-09-07 18:15:54 浏览: 197
要在Python中获取当前时间精确到秒,你可以使用`datetime`模块和`strftime`函数。下面是一个示例代码:
```python
from datetime import datetime
current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(current_time)
```
这段代码将打印出当前时间,格式为"年-月-日 时:分:秒"。你可以根据需要调整时间的格式。
相关问题
python取当前时间精确到秒
可以使用Python内置的datetime模块来获取当前时间,并使用strftime方法将时间格式化为指定的字符串格式,以精确到秒为例,代码如下:
```python
import datetime
now = datetime.datetime.now()
current_time = now.strftime("%Y-%m-%d %H:%M:%S")
print("当前时间为:", current_time)
```
输出结果类似于:当前时间为: 2022-08-18 15:53:20。
python获取当前时间,精确到秒
可以使用Python内置的`datetime`模块来获取当前时间,然后使用`.strftime()`方法来格式化输出。以下是一个示例代码:
```python
from datetime import datetime
now = datetime.now()
current_time = now.strftime("%Y-%m-%d %H:%M:%S")
print("Current Time =", current_time)
```
输出结果为:
```
Current Time = 2021-10-20 09:51:23
```
其中,`%Y`表示年份,`%m`表示月份,`%d`表示日期,`%H`表示小时,`%M`表示分钟,`%S`表示秒。
阅读全文