526) f-strings (PEP 498) introduction of underscores in numeric literals, e.g. 1_000 (PEP 515) python 3.7 postponed evaluation of annotations via from __future__ import annotations (PEP 563) sort order of dicts is now guaranteed introduction of breakpoint, additionally to import pdb;pdb.set_trace() (PEP 553) introduction of data classes (PEP 557) python 3.8 introduction of the walrus operator (PEP 572) python 3.9 builtin generic types, that means you can use list and dict for type annotations, instead of importing e.g. from typing import List (PEP 585) eumiro 9