A few things to note about Python

Source: Internet
Author: User

, ============== pit =======

1. The value of the mutable type is not used as the default value for the function parameter

2. Be careful + =

A = range (Ten) b = Range (5) A_orig = a A + = b print a print A_orig # A_orig The value is changed during the above process.
A = range (Ten) b = Range (5) A_orig = a = a + b print a print A_orig # A_orig or the original value, unchanged.

========= Performance =======

1, RANGE returns the iteration object returned by List,xrange, so xrange saves memory

2.

3, more efficient than their for

4.

A few things to note about 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.