python打印当前时间,格式为年月日时分秒
时间: 2024-05-04 15:15:29 浏览: 120
可以使用 Python 自带的 datetime 模块来打印当前时间,代码如下:
```python
import datetime
now = datetime.datetime.now()
current_time = now.strftime("%Y-%m-%d %H:%M:%S")
print("当前时间为:", current_time)
```
输出:
```
当前时间为: 2021-04-21 11:38:30
```
希望你满意!
相关问题
PYTHON获取当前年月日时分秒
在Python中,你可以使用内置的`datetime`模块来获取当前的日期和时间。下面是一个简单的例子:
```python
from datetime import datetime
# 获取当前日期和时间
now = datetime.now()
# 分别提取年、月、日、小时、分钟和秒
current_year = now.year
current_month = now.month
current_day = now.day
current_hour = now.hour
current_minute = now.minute
current_second = now.second
print(f"当前时间为: {current_year}-{current_month:02d}-{current_day:02d} {current_hour:02d}:{current_minute:02d}:{current_second:02d}")
```
这个代码片段首先导入了`datetime`模块,然后通过`datetime.now()`获取当前的时间,接着使用`.year`, `.month`, `.day`, `.hour`, `.minute`, 和 `.second`属性来分别获取各个部分,最后按照指定的格式打印出来。
python打印年月日时分秒
可以使用Python中的datetime库来打印当前的年月日时分秒,代码如下:
```python
from datetime import datetime
now = datetime.now()
print("当前时间为:", now.strftime("%Y-%m-%d %H:%M:%S"))
```
输出结果类似于:当前时间为:2021-08-10 14:30:15。
阅读全文