Python Day Tenth (function two)

Source: Internet
Author: User

First, default parameters of the trap

If you set a default parameter to an empty list in the row parameter and then perform the function in the value multiple times, the following function will share the list.

def func (k,l = {}):    'v'    print(l) func (1  ) func (2) func (3)

Results:

{1: ' V '}
{1: ' V ', 2: ' V '}
{1: ' V ', 2: ' V ', 3: ' V '}

Two or three-dollar operation (Trinocular operation)

Three conditions:

There has to be a result.

Must have if and else

It could just be a simple situation.

x = 4=2ifelse  yprint(a)

Three or three types of namespaces

Built-in namespaces-Python interpreter

Global namespaces--write functions, but not code in functions

Local namespaces--functions

Python Day Tenth (function two)

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.