---
---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
AD

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

  • Result:50points,
  • Rating points-4
m

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

  • Result:80points,
  • Rating points4
m

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

  • Result:20points,
  • Rating points-10
Last comments
ИМ
Игорь МаксимовNov. 22, 2024, 10:51 p.m.
Django - Tutorial 017. Customize the login page to Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Evgenii Legotckoi
Evgenii LegotckoiNov. 1, 2024, 12:37 a.m.
Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
A
ALO1ZEOct. 19, 2024, 6:19 p.m.
Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Игорь МаксимовOct. 5, 2024, 5:51 p.m.
Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
d
dblas5July 5, 2024, 9:02 p.m.
QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Now discuss on the forum
Evgenii Legotckoi
Evgenii LegotckoiJune 25, 2024, 1:11 a.m.
добавить qlineseries в функции Я тут. Работы оень много. Отправил его в бан.
t
tonypeachey1Nov. 15, 2024, 5:04 p.m.
google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
NSProject
NSProjectJune 4, 2022, 1:49 p.m.
Всё ещё разбираюсь с кешем. В следствии прочтения данной статьи. Я принял для себя решение сделать кеширование свойств менеджера модели LikeDislike. И так как установка evileg_core для меня не была возможна, ибо он писался…
9
9AnonimOct. 25, 2024, 7:10 p.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

Follow us in social networks