使用两种格式化方式来输出,本年1月共有31天
时间: 2024-06-15 17:06:18 浏览: 73
ASP.NET获取本天、周、月、年的起止时间
5星 · 资源好评率100%
使用两种格式化方式来输出本年1月共有31天:
方式一:使用字符串格式化
```python
year = 2022
month = 1
days = 31
output = "本年{}月共有{}天".format(month, days)
print(output)
```
方式二:使用f-string格式化
```python
year = 2022
month = 1
days = 31
output = f"本年{month}月共有{days}天"
print(output)
```
阅读全文