How does python ignore warning errors?

Source: Internet
Author: User
Running a python file always reports warning errors, which are depressing, so you can ignore these errors. The following describes how to ignore these warnings. If you run a python file in python-wightnoreyou, it always reports the warning error, which is very depressing, so you can ignore these errors.

The following describes how to ignore these warnings.

Python-W ignore yourscript. py

Import warningsdef fxn (): warnings. warn ("deprecated", DeprecationWarning) with warnings. catch_warnings (): warnings. simplefilter ("ignore") fxn ()

If you do not want to use the above method, you can directly add the following code in the python source code:

Import warningswarnings. filterwarnings ("ignore ")

In this way, you can ignore the warning errors reported by python.

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.