DEV Community

bluepaperbirds
bluepaperbirds

Posted on

3 2

try-catch

Errors can happen if a Python program is running. There are many types of errors, like a "couldn't open file error" or "zero division error".

If an error pops up, that doesn't mean your program should crash.

So how do you stop it from crashing?

You can use the try-except code. Other programming languages like C# or Java call this the try-catch block.

You can use this to catch errors (sounds better than to except). Some code examples listed below:

try:
    for i in range(5):
        print(5/i)
except:
    print("Zero division")

print("End program")

For opening a file, where the filename is given as user input:

>>> filename = input("Enter file:")
Enter file:test.txt
>>> try:
...     with open(filename) as f:
...         lines = f.read()
... except:
...     print("Couldn't open file")
... 
Couldn't open file
>>> 

Doing some maths, catch different types of exceptions:

a,b=1,0
try:
    print(a/b)
    print('10'+10)
except TypeError:
    print("Cannot add, values are incompatible data types")
except ZeroDivisionError:
    print("Divided by zero")

You can apply this for function calls too, or inside functions.

try:
    start()
    accel()
    turn()
except:
    print("Car error")

Quadratic AI

Quadratic AI – The Spreadsheet with AI, Code, and Connections

  • AI-Powered Insights: Ask questions in plain English and get instant visualizations
  • Multi-Language Support: Seamlessly switch between Python, SQL, and JavaScript in one workspace
  • Zero Setup Required: Connect to databases or drag-and-drop files straight from your browser
  • Live Collaboration: Work together in real-time, no matter where your team is located
  • Beyond Formulas: Tackle complex analysis that traditional spreadsheets can't handle

Get started for free.

Watch The Demo πŸ“Šβœ¨

Top comments (0)

Image of Timescale

PostgreSQL for Agentic AI β€” Build Autonomous Apps on One Stack ☝️

pgai turns PostgreSQL into an AI-native database for building RAG pipelines and intelligent agents. Run vector search, embeddings, and LLMsβ€”all in SQL

Build Today

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay