Python scattered Knowledge Point records

Source: Internet
Author: User

1, about setdefaultencoding must reload (SYS):  

To call setdefaultencoding, you have to reload the Sys module first, because the import statement here is not actually the first import statement of Sys, that is, this may be the second to third time the Sys module imports, This is just a reference to SYS and can only be reload for reloading.

So why reload, and direct reference can not call the function? Because the setdefaultencoding function is deleted after being called by the system, it is not already in the import reference, so it must be reload once sys module, so setdefaultencoding will be available To modify the current character encoding of the interpreter in the code.

In the Python installation directory of the Lib folder, there is a file called site.py, in which you can find main ()--setencoding ()-->sys.setdefaultencoding (encoding), Because this site.py is automatically loaded every time the Python interpreter is started, the main function is executed every time, and the setdefaultencoding function is removed.

Python scattered Knowledge Point records

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.