如何将格式为“ 290119”的字符串转换为日期时间 dd / mm / yy
我需要比较日期以查看最先出现的情况。
还介绍了如何以相同的格式从日期时间获取今天的日期
datetime.datetime.now()
将返回标准的较长日期。
期望的结果是
x = str "290119" to datetime
y = datetime.datetime.now(same format for comparison)
if (x is y):
#works
if (x > y):
#in the future
x = str "290119" to datetime
y = datetime.datetime.now(same format for comparison)
if (x is y):
#works
if (x > y):
#in the future