In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "the syntax and usage scene of Python3.8 assignment expression". The content of the explanation is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn the syntax and usage scenario of Python3.8 assignment expression.
The syntax of the assignment expression is "name: = expression", which was once a controversial feature and was eventually added to Python3.8. But it's just an icing on the cake.
We can use an example to understand its usage scenario.
> import re
> data = "hello123world"
> match = re.search ("(\ d +)", data) # 3
> > if match: # 4
... Num = match.group (1)
... Else:
... Num = None
> num
'123'
The code is simple: an operation that uses regular expressions to extract the numeric portion of a string. The previous approach is to first call the re.search method, return the Match object, then assign a value to the variable match, and then determine whether the match object is None to extract the numeric part of it.
In Python3.8, you can combine lines 3 and 4 into one line of code, and in the if statement, you can assign values to variables, which is the assignment expression. There is one less line of code than in the previous version.
> if match:=re.search ((\ d +) ", data):
... Num = match.group (1)
... Else:
... Num = None
...
> num
Thank you for your reading. The above is the content of "the syntax and usage scenarios of Python3.8 assignment expressions". After the study of this article, I believe you have a deeper understanding of the syntax and usage scenarios of Python3.8 assignment expressions, and the specific usage needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.