Posts

Assignment 07

#-------------------------------------------------# # Title: Python Error Handling & Pickle # Dev:   Craig Frost # Date:  December 3, 2018 # ChangeLog: (Craig Frost, 12/3/18, Initial Creation) #-------------------------------------------------# Github Repository:  https://github.com/CraigFrost1/IntroToProg-Python/commit/9bcbdcd9c6114afc846221c4aeaccf3f7d5e5f04 Python Error Handling and the 'Pickle' module Introduction In this module, we were introduced to two new concepts: error handling and using the pickle module.  Python error handling is a way to capture errors as a program executes without causing the program to completely fail.  The pickle module showed us how to import and use a module and how to leverage object sterilization for data storage and retrieval.   Python Error Handling Error handling in Python can be accomplished in several ways. The two types of error handling techniques I researched for this assignment are 'try and except' and
Recent posts