A detailed explanation of the error and exception handling of try-except usage in Python

Source: Internet
Author: User
The examples in this article describe errors and exception handling operations in Python. Share to everyone for your reference, as follows:


Syntax errors are detected #coding =utf8print ' program compile. When an error is detected, the interpreter throws an exception and displays the details of the exception. Adding error detection and exception handling in your code requires you to encapsulate the code in the Try-except statement. Try:  try_suiteexcept:  except_ The code group after the suite-------------------------------------------------------------------------------try is the user-managed code. The code group after except is the code that handles the error. "Try:  filename=raw_input (" Enter file name: ")  output=open (filename, ' R ') for  eachline in output:    Print Eachline  output.close () except ioerror,e:  print "File Open error:", E

Operation Result:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.