python输出年月日时分秒
时间: 2023-10-01 22:02:06 浏览: 101
您可以使用Python内置的datetime模块来输出当前的年月日时分秒。以下是一个示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:")
print(now.strftime("%Y-%m-%d %H:%M:%S"))
```
运行以上代码,将输出格式化后的当前时间,例如:
```
当前时间为:
2021-10-25 15:30:00
```
相关问题
python 输出年月日时分秒
你可以使用 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
```
python 输出年月日时分秒用下划线相连
你可以使用 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
```
阅读全文