A brief discussion on Python's function knowledge

A brief discussion on Python's function knowledge

Two major categories of function parameters

Formal parameters are the parameters written in parentheses during the function definition phase. Actual parameters are the parameters passed in parentheses during the function call phase.
The relationship between formal parameters and actual parameters Formal parameters can be regarded as variable names, and actual parameters can be regarded as variable values. They are temporarily bound during the function call phase and disconnected when the function is finished. There are many forms of variable names and actual parameters (grasp the core data value)

insert image description here

Positional parameters

Positional parameters are the positional parameters filled in from left to right. Variable name positional parameters are filled in from left to right during the function definition phase. Data values ​​are filled in from left to right during the function call phase.
Keyword arguments (can break positional order)
	During the function call phase, the value is passed in the form of parameter name = data value. 1. Positional parameters and positional actual parameters are bound according to the corresponding position during the function call phase. 2. When binding positional parameters, one more or one less is not allowed. Key points: The simpler the format, the earlier it is, and the more complex it is, the later it is.	

Variable length parameters

1. The function can run normally no matter how many positional parameters are passed in. Variable length parameters def func(x,y,*a):
     print(x,y,a)
 func() # ()
 func(1) # (1,)
 func(1, 2, 3, 4, 5, 6, 7) # (1, 2, 3, 4, 5, 6, 7)
 func(1,2) # 1 2 ()
 func(1,2,3,4,5,6,7,8,9) # 1 2 (3, 4, 5, 6, 7, 8, 9)
 func(1,2) # 1 2 (3, 4, 5, 6, 7, 8, 9)
* is used in the parameter to receive extra positional parameters and organize them into tuples and assign them to the variable name after *
2. The function can run normally no matter how many keywords are passed in def index(x, y, **b):
     print(x, y, b)
 index() # {}
 index(a=1,b=2,c=3,d=4) # {'a': 1, 'b': 2, 'c': 3, 'd': 4}
 index(y=2, x=1) # 1 2 {}
 index(y=2, x=1, u=222, k=111, l=444) # 1 2 {'u': 222, 'k': 111, 'l': 444}
**In the parameter, it is used to receive extra keyword parameters and organize them into a dictionary to assign to the variable name behind it. *Using it will break up the data in the list and tuple. **Using it will break up the key-value pairs of the dictionary into keyword parameters and pass them in.

Namespace

	1. Built-in namespace print()
        	len()
	2. Global namespace Code written in the top grid of the py file name = 'jason' # name global def func(): # func global pass
            if 1:
                a = 123 # a global for i in range(10):
                print(i) # i global while True:
                a = 123 # a global 3. Local namespace After the function body code is run, the local namespace is generated. 

insert image description here

Summarize

This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of Python variables, data types, data type conversion related functions usage examples
  • Python method to check function parameter data type through decorator
  • Summary of commonly used python data type conversion functions
  • Python basics variables and data types
  • Python beginner definition function
  • Python's six basic data types and common functions are shown

<<:  User experience of portal website redesign

>>:  Docker installs ClickHouse and initializes data testing

Recommend

How to create your first React page

Table of contents What is Rract? background React...

Teach you the detailed process of installing DOClever with Docker Compose

Table of contents 1. What is Docker Compose and h...

Detailed explanation of incompatible changes of components in vue3

Table of contents Functional Components How to wr...

Detailed Introduction to the MySQL Keyword Distinct

Introduction to the usage of MySQL keyword Distin...

Mini Program to Implement Simple List Function

This article example shares the specific code of ...

NodeJs high memory usage troubleshooting actual combat record

Preface This is an investigation caused by the ex...

Summary of 10 amazing tricks of Element-UI

Table of contents el-scrollbar scroll bar el-uplo...

Detailed steps to build an independent mail server on Centos7.9

Table of contents Preface 1. Configure intranet D...

Which scenarios in JavaScript cannot use arrow functions

Table of contents 1. Define object methods 2. Def...

Three ways to configure JNDI data source in Tomcat

In my past work, the development server was gener...