```python from datetime import date
current_date = date.today() target_date = date(2022, 12, 30) days_passed = (current_date - target_date).days
print("从2022年12月30日到现在已经过去了{}天。
".format(days_passed))
```
运行该代码,即可得到从2022年12月30日到当前日期的天数。
```python from datetime import date
current_date = date.today() target_date = date(2022, 12, 30) days_passed = (current_date - target_date).days
print("从2022年12月30日到现在已经过去了{}天。
".format(days_passed))
```
运行该代码,即可得到从2022年12月30日到当前日期的天数。