📜  输入日期参数 python datetime - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:13.437000             🧑  作者: Mango

代码示例1
parser.add_argument('-s', "--startdate",
    help="The Start Date - format YYYY-MM-DD",
    required=True,
    type=datetime.date.fromisoformat)
parser.add_argument('-e', "--enddate",
    help="The End Date format YYYY-MM-DD (Inclusive)",
    required=True,
    type=datetime.date.fromisoformat)