In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/02 Report--
Python 3.8 has recently been released. Don't worry, though, we've compiled six new Python 3.8 features that every novice should master.
The IT industry is changing rapidly, and Python 2 will be phased out in 2020.
In 2019, with the rise of data science, Python became the hottest programming language. Nevertheless, it is normal to be overwhelmed by the vast amount of knowledge. The syntax is constantly changing, and every time Python is updated, many new expressions are added. There are so many functions that the small core only hates that it is too late to know. If you feel the same way, here's the bad news: Python 3.8 has been released recently. Don't worry, though, we've compiled six new Python 3.8 features that every novice should master.
1. New Module: Reading Metadata Calendar
The metadata of third-party packages can be read using the new importlib.metadata module. Version numbers can be obtained in script packages.
2. Dictionary inversion: sort
Dictionaries can now be iterated in reverse insertion sort with resented ( ).
3. Continue - finally
Because of Python implementation issues, it was previously illegal to add a continue statement to the Finally clause. That problem no longer exists.
for i inrange(2): try: print(i) finally: print('A sentence. ') continue print('This never shows. ') # Python >SyntaxError: 'continue'not supported inside 'finally' clause # Python 3.8 >>0 A sentence. 1 A sentence.4. Indicates parameter type: makes code more powerful
Python functions accept only two arguments.
Position Parameters: Pass parameters according to the position of the parameters defined by the function.
Keyword Parameters: Use keywords to specify parameters.
In the following example, the values of parameters a and b can be determined by position parameters or keyword parameters, which is very flexible.
def my_func(a, b=1): return a+bmy_func(5,2) # both positional arguments my_func(a=5,b=2) # both keyword arguments
The new version of Python, distinguished by the syntax/and *, provides a way to specify acceptance of positional or keyword arguments. Note: Syntax * does not appear in Python 3.8.
In the example below, the first two parameters a and b accept only positional parameters, the middle parameters c and d accept positional or keyword parameters, and the last parameters e and f accept only keyword parameters.
defmy_func(a, b, /, c, d, *, e, f): return a+b+c+d+e+f my_func(1,2,3,4,5,6) # invalid as e and f are keyword-only my_func(a=1,b=2,3,4,e=5,f=6) # invalid as a and b are position-only my_func(1,2,c=3,4,e=5,f=6) # returns 21 my_unc(1,2,c=3,d=4,e=5,f=6) # returns 21
Why sacrifice flexibility? If parameter names are arbitrary and useless, keyword parameters should be excluded. If you expect parameter names in a function to change, specifying parameter types can prevent code from crashing and make your code more powerful.
5. Assignment Expressions: Improve Code Readability
Assignment expressions, also known as walrus operators, are new operators with the syntax:= that assign parts of larger expressions to variables. This is undoubtedly the most talked about new feature in Python 3.8.
Let's look at an example: the assignment expression b := a**2 assigns the square of a, which is 36, to b, and checks whether b is greater than 0.
a =6 # The following statement # assigns the value a ** 2 to variable b, # and then check if b > 0 is true if (b := a **2) >0: print(f'The square of {a} is {b}. ') # The square of 6 is 36.
Sometimes assignment expressions can make code simpler and more readable. Be careful not to abuse assignment expressions, however, because in some cases it can make code harder to understand.
# DON'T DO THIS! a = 5 d = [b := a+1, a := b-1, a := a*2]
Assignment expressions are also available in other (older) programming languages, and programmers who wish to switch to Python will be able to use this new feature. Get a grip on assignment expressions before they flood the place.
6. F String 2.0: Tools for debugging
Python f string changed the rules of the game. F string is a syntax for formatting strings, concise and readable. By using the syntax f'{expr}' and enclosing the expression in curly braces, you can insert an expression into a string.
After Python updates, the equal sign "=" can be used as a format qualifier in the f string f'{expr=}' syntax. The output string is variable name = variable value, as follows:
# DON'T DO THIS! a = 5 d = [b := a+1, a := b-1, a := a*2]
For documentation or debugging purposes, it is often necessary to specify variable values. The F string makes debugging easy.
Of course, before you can dive into Python 3.8 programming, you need to master Python basics (essential).
These are Python's 6 new features that every Python novice can benefit from.
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.