top of page
learn_data_science.jpg

Data Scientist Program

 

Free Online Data Science Training for Complete Beginners.
 


No prior coding knowledge required!

Try and Except Structure in Python

The Python try…except statement catches an exception. It is used to test code for an error which is written in the “try” statement. If an error is encountered, the contents of the “except” block are run.


This is a way to eliminate or catch a traceback.

  • We surround a dangerous section of code with try and except.

  • If try works, then except is skipped

  • If try fails to work, then the except section is executed.


Now, what is the dangerous section of code?


- It's the section where our code might blow up into some errors like traceback. For example, user input.

When we accept input from the users, they can enter any kind of values that may or may not be a problem for our code. To avoid situations like traceback, we often handle this using Try and Except structure.


#Here we are accepting a number from user.
num = input('Enter a number: ')
try:
    convert_num = int(num) # converting string into numeric
except:
    convert_num = -1
     
if convert_num >= 0:
    print('Nice work. You have entered ', convert_num)
else:
    print('Invalid Input')

Enter a number: 1234

Output:
Nice work. You have entered 1234

Enter a number: abcd

Output:
Invalid Input

 
 
 

Comments


COURSES, PROGRAMS & CERTIFICATIONS

 

Advanced Business Analytics Specialization

Applied Data Science with Python (University of Michigan)

Data Analyst Professional Certificate (IBM)

Data Science Professional Certificate (IBM)

Data Science Specialization (John Hopkins University)

Data Science with Python Certification Training 

Data Scientist Career Path

Data Scientist Nano Degree Program

Data Scientist Program

Deep Learning Specialization

Machine Learning Course (Andrew Ng @ Stanford)

Machine Learning, Data Science and Deep Learning

Machine Learning Specialization (University of Washington)

Master Python for Data Science

Mathematics for Machine Learning (Imperial College London)

Programming with Python

Python for Everybody Specialization (University of Michigan)

Python Machine Learning Certification Training

Reinforcement Learning Specialization (University of Alberta)

Join our mailing list

Data Insight participates in affiliate programs and may sometimes get a commission through purchases made through our links without any additional cost to our visitors.

bottom of page