Discussion 08.1: Types of CodesI choose to discuss why I use try statement code that handles multiple exceptions code in python. It is a fact of life that humans make mistakes. Mistakes in python programming are a common factor. Unexpected problems that happen when the program is running need to be solved to give desired task of that program (Murach and Urban, 2016). In python try statement provides a way to catch these mistakes and allow the program to execute or proceed normally. In python, exceptions are smaller problems that we can define and in many cases have solutions (Murach and Urban, 2016).As we are aware errors that are in large scale are so catastrophic. At some point requires us to abort the program. The python try statement is meant to deal with every kind of exception. Some examples of exceptions are: division by zero, calling a method that does not exist or opening a file that does not exist.As we all know exceptions pose two problems. First is the obvious that a program cannot function as intended. The second problem is that the user must be aware of anything wrong. An advantage of python language is that it allows