python try: file = open("myfile.txt", "r") contents = file.read() file.close() except FileNotFoundError: except IOError: except Exception as e: