Python获取当前年月日的字符串
时间: 2024-01-02 15:04:03 浏览: 77
python获取当前日期和时间的方法
5星 · 资源好评率100%
你可以使用Python的datetime模块来获取当前年月日的字符串。下面是一个例子:
```python
from datetime import datetime
now = datetime.now()
year = now.year
month = now.month
day = now.day
# 将数字转换为字符串,并且在前面加上0,使其成为两位数
month_str = str(month).zfill(2)
day_str = str(day).zfill(2)
# 拼接成字符串,格式为:年-月-日
date_str = f"{year}-{month_str}-{day_str}"
print(date_str)
```
输出:
```
2021-03-25
```
在上面的代码中,我们首先使用`datetime.now()`获取当前日期和时间。然后,我们从中提取出年、月、日的数字,并将它们转换为字符串。最后,我们使用字符串拼接的方式将它们组合成一个日期字符串。
阅读全文