Giter Club home page Giter Club logo

eng-54-handling-errors's Introduction

Working with Files and Error Handling Exceptions

Error handling is the important concept of this class.

Topics

This class will cover:

  • error handling
  • excptions
  • using try and except
  • best practices using with
  • clean up our functions with finally
  • open, closing and writing to files

Error Handling

What can go wrong will go wrong

Assume your code will break, and what you want to do is handle the errors, gracefully.

When you handle your errors, your code will continue to run.

Best Practices

never capture all exceptions

You never want to handle for ALL EXCEPTION because it can create an unstopable code.

You must specify what exception you want to handle:

try:
    file = open('order.txt')
except FileNotFoundError
    print('THERE HAS BEEN AN ERROR! PANIC NOW!')

Capture your message

You can capture your messages using as:

try:
    file = open('order.txt')
except FileNotFoundError as error_message:
    # print('THERE HAS BEEN AN ERROR! PANIC NOW!')

Definitions

errors and exceptions

It's when the code actually breaks / stops. Unless handled. / stops. Unless handled.

eng-54-handling-errors's People

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.