current position:Home>Does Python have a, = operator?
Does Python have a, = operator?
2022-01-30 18:05:11 【somenzz】
Today, I'd like to share a rare knowledge point , Namely Python Is there a ,= The operator ?
Let's ignore it first , You must be quite familiar with the code related to commas :
1, Components of tuples
Parentheses without commas , Can't form tuples , Even if there is only one element , You also need commas .
In [6]: a = (1,)
In [7]: type(a)
Out[7]: tuple
Copy code
2、 Exchange two variables
In [8]: a = 1
In [9]: b = 2
In [10]: a, b = b, a
In [11]: f"{a = } {b = }"
Out[11]: 'a = 2 b = 1'
Copy code
You want to exchange three 、 four 、 Multiple , You can do the same .
3、 Disassembly list , Tuples , Or set
In [12]: a, b = [1,2]
In [13]: f"{a = } {b = }"
Out[13]: 'a = 1 b = 2'
In [14]: a, b = (3,4)
In [15]: f"{a = } {b = }"
Out[15]: 'a = 3 b = 4'
In [17]: a, b = {5,6}
In [18]: f"{a = } {b = }"
Out[18]: 'a = 5 b = 6'
In [19]:
Copy code
4、,= The operator ?
Understand the above operation , Now what is the result of the following code ?
a ,= [2]
b , = [2]
c , = (2,)
d , = {2}
e ,= range(2,3)
print(a,b,c,d,e)
Copy code
If you have results in your heart , You can see if it meets expectations :
>>> a,=[2]
>>> b , = [2]
>>> c , = (2,)
>>> d , ={2}
>>> e , = range(2,3)
>>> print(a,b,c,d,e)
2 2 2 2 2
>>>
Copy code
As long as there is only one element inside the iteratable object , You can go through ,= Take out this value in the form of , As for whether the comma and the equal sign are next to , It doesn't matter .
In a word ,,=
Namely Disassembly list , Tuples , aggregate , Iteratable object
The special case of , It must have only one element .
Last
Has strange knowledge increased ? If there is harvest , Please like it
copyright notice
author[somenzz],Please bring the original link to reprint, thank you.
https://en.pythonmana.com/2022/01/202201301805092666.html
The sidebar is recommended
- Exploratory data analysis (EDA) in Python using SQL and Seaborn (SNS).
- Turn audio into shareable video with Python and ffmpeg
- Using rbind in python (equivalent to R)
- Pandas: how to create an empty data frame with column names
- Talk about quantifying investment using Python
- Python, image restoration in opencv - CV2 inpaint
- Python notes (14): advanced technologies such as object-oriented programming
- Python notes (13): operations such as object-oriented programming
- Python notes (12): inheritance such as object-oriented programming
- Chapter 2: Fundamentals of python-5 Boolean
guess what you like
-
Python notes (11): encapsulation such as object-oriented programming
-
Python notes (10): concepts such as object-oriented programming
-
Gradient lifting method and its implementation in Python
-
Van * Python | simple crawling of a site course
-
Chapter 1 preliminary knowledge of pandas (list derivation and conditional assignment, anonymous function and map method, zip object and enumerate method, NP basis)
-
Nanny tutorial! Build VIM into an IDE (Python)
-
Fourier transform of Python OpenCV image processing, lesson 52
-
Introduction to python (III) network request and analysis
-
China Merchants Bank credit card number recognition project (Part I), python OpenCV image processing journey, Part 53
-
Introduction to python (IV) dynamic web page analysis and capture
Random recommended
- Python practice - capture 58 rental information and store it in MySQL database
- leetcode 119. Pascal's Triangle II(python)
- leetcode 31. Next Permutation(python)
- [algorithm learning] 807 Maintain the city skyline (Java / C / C + + / Python / go / trust)
- The rich woman's best friend asked me to write her a Taobao double 11 rush purchase script in Python, which can only be arranged
- Glom module of Python data analysis module (1)
- Python crawler actual combat, requests module, python realizes the full set of skin to capture the glory of the king
- Summarize some common mistakes of novices in Python development
- Python libraries you may not know
- [Python crawler] detailed explanation of selenium from introduction to actual combat [2]
- This is what you should do to quickly create a list in Python
- On the 55th day of the journey, python opencv perspective transformation front knowledge contour coordinate points
- Python OpenCV image area contour mark, which can be used to frame various small notes
- How to set up an asgi Django application with Postgres, nginx and uvicorn on Ubuntu 20.04
- Initial Python tuple
- Introduction to Python urllib module
- Advanced Python Basics: from functions to advanced magic methods
- Python Foundation: data structure summary
- Python Basics: from variables to exception handling
- Python notes (22): time module and calendar module
- Python notes (20): built in high-order functions
- Python notes (17): closure
- Python notes (18): decorator
- Python notes (16): generators and iterators
- Python notes (XV): List derivation
- Python tells you what timing attacks are
- Python -- file and exception
- [Python from introduction to mastery] (IV) what are the built-in data types of Python? Figure out
- Python code to scan code to pay attention to official account login
- [algorithm learning] 1221 Split balanced string (Java / C / C + + / Python / go / trust)
- Python notes (22): errors and exceptions
- Python has been hidden for ten years, and once image recognition is heard all over the world
- Python notes (21): random number module
- Python notes (19): anonymous functions
- Use Python and OpenCV to calculate and draw two-dimensional histogram
- Python, Hough circle transformation in opencv
- A library for reading and writing markdown in Python: mdutils
- Datetime of Python time operation (Part I)
- The most useful decorator in the python standard library
- Python iterators and generators