python 获取当前年月日
时间: 2023-10-16 18:21:16 浏览: 93
可以使用Python内置的datetime模块来获取当前的年月日。具体实现如下:
```python
import datetime
# 获取当前日期和时间
now = datetime.datetime.now()
# 获取当前年份
year = now.year
# 获取当前月份
month = now.month
# 获取当前日期
day = now.day
print(f"当前日期为:{year}年{month}月{day}日")
```
输出结果为:当前日期为:2021年9月3日
相关问题
python获取当前年月日
获取当前年月日可以使用 Python 中的 datetime 模块。具体代码如下:
```python
from datetime import datetime
now = datetime.now()
year = now.year
month = now.month
day = now.day
print(year, month, day)
```
这样就可以获取当前的年月日了。
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`属性来分别获取各个部分,最后按照指定的格式打印出来。
阅读全文