python 获取年月日
时间: 2023-10-16 10:20:17 浏览: 102
你可以使用 Python 中的 datetime 模块来获取当前的年月日。下面是一个简单的代码示例:
```
import datetime
# 获取当前日期
now = datetime.datetime.now()
# 打印当前日期
print("当前日期为:")
print(now.year, "年", now.month, "月", now.day, "日")
```
这将打印出当前的年月日,格式为“年月日”。你可以根据自己的需要修改代码,以获取特定日期的年月日。
相关问题
Python获取年月日
你可以使用Python的datetime模块来获取当前的年、月和日。以下是一个示例代码:
```python
from datetime import datetime
now = datetime.now()
year = now.year
month = now.month
day = now.day
print("当前日期:{}年{}月{}日".format(year, month, day))
```
这将打印出当前日期的年、月和日。你也可以根据需要将这些值存储在变量中,以便在代码中进一步使用。
python获取年月日时分秒
以下是两种Python获取当前时间的年月日时分秒的例子:
1. 使用time模块获取当前时间并格式化输出年月日时分秒:
```python
import time
now_time = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime())
print(now_time) # 输出:2022-08-09 16:43:35
```
2. 使用datetime模块获取当前时间的年月日时分秒:
```python
import datetime
today = datetime.datetime.today()
currentYear = today.year
currentMonth = today.month
currentDay = today.day
currentHour = today.hour
currentMinute = today.minute
currentSecond = today.second
print(currentYear, currentMonth, currentDay, currentHour, currentMinute, currentSecond) # 输出:2022 8 9 16 45 22
```
阅读全文