python 获取当前时间年月
时间: 2023-09-27 18:08:45 浏览: 75
可以使用 Python 中的 datetime 模块来获取当前时间的年月。具体代码如下:
```python
from datetime import datetime
now = datetime.now()
year = now.year
month = now.month
print("当前时间是:{}年{}月".format(year, month))
```
输出结果类似于:
```
当前时间是:2021年10月
```
相关问题
python 获取当前时间年月日
你可以使用 Python 内置的 datetime 模块来获取当前时间的年月日。以下是示例代码:
```python
import datetime
now = datetime.datetime.now()
year = now.year
month = now.month
day = now.day
print("当前时间为:{}年{}月{}日".format(year, month, day))
```
输出结果类似于:当前时间为:2021年8月16日
python获取当前时间 年月日时分秒
在Python中,可以使用datetime模块获取当前时间,并用strftime函数将其格式化为需要的字符串格式。示例代码如下:
```python
import datetime
now = datetime.datetime.now() # 获取当前时间
time_str = now.strftime("%Y-%m-%d %H:%M:%S") # 格式化为字符串
print(time_str) # 输出:2021-08-31 14:30:00
```
其中,`%Y`表示年份,`%m`表示月份,`%d`表示日期,`%H`表示小时,`%M`表示分钟,`%S`表示秒。更多格式化字符可以参考Python官方文档。
阅读全文