I want to test the format of multiple dates using this function, then use sys.exit(1) to exit after all the checks are done if any of them returned an error. How can I return if any of multiple checks had an error?
def test_date_format(date_string):
try:
datetime.strptime(date_string, '%Y%m')
except ValueError:
logger.error()
test_date_format("201701")
test_date_format("201702")
test_date_format("201799")
# if any of the three tests had error, sys.exit(1)
You could return some indicator: