python获取当前时间的年月
时间: 2023-08-19 19:08:27 浏览: 84
要获取当前时间的年月,你可以使用Python的`datetime`模块。以下是一个获取当前时间年月的示例代码:
```python
from datetime import datetime
now = datetime.now()
year = now.year
month = now.month
print("当前时间:", year, "年", month, "月")
```
运行上述代码,你将得到类似以下输出:
```
当前时间: 2022 年 3 月
```
请注意,`datetime.now()`函数返回的是当前的本地时间。如果你需要获取其他时区的时间,可以使用`pytz`库来进行时区转换。
相关问题
python 获取当前时间年月
可以使用 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日
阅读全文