---
---June 25, 2020, 2:34 p.m.

What's new in Python 3.9

Table of contents

It is currently in beta (3.9.0b3), and in the future we will see a full release of Python 3.9. A few of the new features are just incredibly cool, and it will be awesome to see them in a full release.


We will cover the following points:

  • Dictionary concatenation operator
  • Typing
  • Two new string methods
  • New parser

Let's look at these innovations and how they can be applied.

Combining Dictionaries

One of my favorite features with good syntax. For example, if we have 2 dictionaries a and b that need to be combined, now we can use a special operator.

a = {1: 'a', 2: 'b', 3: 'c'}
b = {4: 'd', 5: 'e'}

c = a | b
print(c) # {1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}

As well as the update operator |= to update an existing dictionary:

a = {1: 'a', 2: 'b', 3: 'c'}
b = {4: 'd', 5: 'e'}

a |= b

print(a) # {1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}

If two different dictionaries have the same key, then use | :

a = {1: 'a', 2: 'b', 3: 'c', 6: 'одинаковые ключи'}
b = {4: 'd', 5: 'e', 6: 'но разные значения'}

print(a | b) # {1: 'a', 2: 'b', 3: 'c', 6: 'но разные значения', 4: 'd', 5: 'e'}

Updating dictionaries with generators

Another interesting thing about the |= operator is the ability to update dictionaries with generators that have a key-value pair:

a = {'a': 'one', 'b': 'two'}
b = ((i, i**2) for i in range(3))

a |= b

print(a) # {'a': 'one', 'b': 'two', 0: 0, 1: 1, 2: 4}

When trying to perform such an action with the | we'll get a TypeError because the operator only allows union with dict objects

Ошибка TypeError

Typing

Python is a dynamically typed language, meaning we don't have to specify the type of a variable. This behavior is normal, although it can be confusing at times. And then suddenly Python's flexibility becomes nothing more than an inconvenience.

Since version 3.5, we can specify types for variables, but this approach was somewhat cumbersome. The update changes everything, take a look at the example:

3.9 typing example No typing (left) with 3.9 typing (right)

In the add_int function, we clearly want to add numbers to each other (for some cryptic and inexplicable reason). But our editor does not know this, and it is quite normal to add two lines using the + operator - therefore, we do not see any comments from the interpreter.

Now we can specify the int type we want to expect in the function's input. And now the interpreter will report the error immediately.

We can also specify nested types, for example:

Example of using nested types

Typing can be used everywhere - and all thanks to the new syntax, now it looks much more beautiful.

Example of using nested types

Two new string methods

Not as important as the other innovations mentioned above, but still useful in certain situations. Two new string methods to remove prefix and suffix:

"Hello world".removeprefix("He") # "llo world"

"Hello world".removesuffix("ld") # "Hello wor"

New parser

Although this change cannot be overlooked in any way, it may well become one of the most significant ones for the future development of Python.

Python currently primarily uses the LL(1) parser, which reads code from top to bottom and left to right.

Right now I don't really understand how this works - but I can give you a list of a few problems with this method:

  • Python contains not only the LL(1) parser, for this reason some parsers work bypassing the existing system, creating certain difficulties.

  • LL(1) creates a restriction on Python's syntax (with no way around them). This Issue highlights that the following code cannot be executed with
    current parser (raised by SyntaxError):

with (open("a_really_long_foo") as foo,
      open("a_really_long_bar") as bar):
    pass
  • LL(1) breaks the left recursive parser. So a certain recursive syntax can provoke an infinite loop with a tree structure. Guido van Rossum, creator of Python, explains it here

All of these factors (as well as others I simply can't describe) have a forward-thinking impact on Python; they stop the development of the language.

A new parser based on PEG technology will give developers more flexibility to write code - something we'll start noticing from version 3.10 onwards.

Conclusion

That's all we can expect from the new version 3.9. If you can't wait to try out the new beta release - 3.9.0b3 - you can install it here

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
d
  • dsfs
  • April 26, 2024, 11:56 a.m.

C ++ - Test 004. Pointers, Arrays and Loops

  • Result:80points,
  • Rating points4
d
  • dsfs
  • April 26, 2024, 11:45 a.m.

C++ - Test 002. Constants

  • Result:50points,
  • Rating points-4
d
  • dsfs
  • April 26, 2024, 11:35 a.m.

C++ - Test 001. The first program and data types

  • Result:73points,
  • Rating points1
Last comments
k
kmssrFeb. 9, 2024, 2:43 a.m.
Qt Linux - Lesson 001. Autorun Qt application under Linux как сделать автозапуск для флэтпака, который не даёт создавать файлы в ~/.config - вот это вопрос ))
Qt WinAPI - Lesson 007. Working with ICMP Ping in Qt Без строки #include <QRegularExpressionValidator> в заголовочном файле не работает валидатор.
EVA
EVADec. 25, 2023, 6:30 p.m.
Boost - static linking in CMake project under Windows Ошибка LNK1104 часто возникает, когда компоновщик не может найти или открыть файл библиотеки. В вашем случае, это файл libboost_locale-vc142-mt-gd-x64-1_74.lib из библиотеки Boost для C+…
J
JonnyJoDec. 25, 2023, 4:38 p.m.
Boost - static linking in CMake project under Windows Сделал всё по-как у вас, но выдаёт ошибку [build] LINK : fatal error LNK1104: не удается открыть файл "libboost_locale-vc142-mt-gd-x64-1_74.lib" Хоть убей, не могу понять в чём дел…
G
GvozdikDec. 19, 2023, 5:01 a.m.
Qt/C++ - Lesson 056. Connecting the Boost library in Qt for MinGW and MSVC compilers Для решения твой проблемы добавь в файл .pro строчку "LIBS += -lws2_32" она решит проблему , лично мне помогло.
Now discuss on the forum
BlinCT
BlinCTMay 5, 2024, 12:46 p.m.
Написать свой GraphsView Всем привет. В Qt есть давольно старый обьект дял работы с графиками ChartsView и есть в 6.7 новый но очень сырой и со слабым функционалом GraphsView. По этой причине я хочу написать х…
BlinCT
BlinCTMay 5, 2024, 12:44 p.m.
добавить qlineseries в функции Давно я не работал с виджетами и с формами, на мой взгляд уже пережитов, и в управлении не очень удобное это все. Н оя у вас не увидел в коде где вы QCharts растягиваете на область парента.…
PS
Peter SonMay 4, 2024, 12:57 a.m.
Best Indian Food Restaurant In Cincinnati OH Ready to embark on a gastronomic journey like no other? Join us at App india restaurant and discover why we're renowned as the Best Indian Food Restaurant In Cincinnati OH . Whether y…
Evgenii Legotckoi
Evgenii LegotckoiMay 2, 2024, 9:07 p.m.
Мобильное приложение на C++Qt и бэкенд к нему на Django Rest Framework Добрый день. По моему мнению - да, но то, что будет касаться вызовов к функционалу Андроида, может создать огромные трудности.
IscanderChe
IscanderCheApril 30, 2024, 11:22 a.m.
Во Flask рендер шаблона не передаётся в браузер Доброе утро! Имеется вот такой шаблон: <!doctype html><html> <head> <title>{{ title }}</title> <link rel="stylesheet" href="{{ url_…

Follow us in social networks