Python 中3.6及之前版本datetime没有fromisoformat()的解决方法
Python 中可以使用datetime的fromisoformat()方法将字符串转成datetime对象,但只有Python 3.7以上才支持,Python 3.6及之前的版本不支持,调用会报错:AttributeError: type object 'datetime.datetime' has no attribute 'fromisoformat'。本文主要介绍Python 3.6及之前的版本的兼容解决方法。