1.用户任意输入某年某月某日,判断这一天是这一年的第几天?
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# 先让用户分别输入年月日
year = int(input("年:"))
mouth
2020-07-12