Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Pyhon Learning Note 4: exception

2025-03-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

1. Exception handling of files: try except FileNotFoundError

Try:

Open ("abc.txt",'r')

Except FileNotFoundError:

Print ("abnormal!")

Exception try except NameError of 2.name

Try:

Print (aa)

Except NameError:

Print ("abnormal!")

3. You can use the BaseException class to handle all exceptions

Try:

Open ("abc.txt",'r')

Print (aa)

Except BaseException:

Print ("abnormal!")

4. Print exception log

Try:

# open ("abc.txt",'r')

Print (aa)

Except BaseException as msg:

Print ("abnormal!")

Print (msg)

Common exceptions in 5.python:

(1) try... else..

Try:

Aa= "exception testing"

Print (aa)

Except Exception as msg:

Print (msg)

Else:

Print ("No exception!")

(2) try... finally..

Try:

# open ("abc.txt",'r')

Print (aa)

Except BaseException as msg:

Print ("abnormal!")

Print (msg)

Finally:

Print ("I can execute it!")

6. Throw an exception

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report