What is the purpose of a try block in Python? ( 1 point)

The purpose of a try block in Python is to handle exceptions that may occur during the execution of a block of code. By placing code within a try block, the program can attempt to execute it, and if an exception occurs, the program can catch and handle the exception using one or more except blocks. This helps to prevent the program from crashing due to unexpected errors.