python 输出年月日时分秒用下划线相连
时间: 2023-07-12 15:31:02 浏览: 104
你可以使用 Python 中的 datetime 模块来输出当前的年月日时分秒,并且用下划线相连。以下是示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:")
print(now.strftime("%Y_%m_%d_%H_%M_%S"))
```
输出结果类似于:
```
当前时间为:
2021_06_24_16_25_10
```
阅读全文