Tagged articles
9 articles
Page 1 of 1
Python Programming Learning Circle
Python Programming Learning Circle
Mar 25, 2023 · Fundamentals

New Features and Improvements in Python 3.11

Python 3.11, the latest stable release, brings substantial performance gains of up to 60 %, richer error tracebacks, faster code execution via adaptive specialization, new async task‑group syntax, expanded type‑variable support, built‑in TOML parsing, zero‑cost exceptions, exception groups, and quicker interpreter startup, all detailed with examples and benchmarks.

AsyncExceptionsTOML
0 likes · 9 min read
New Features and Improvements in Python 3.11
Python Programming Learning Circle
Python Programming Learning Circle
Oct 26, 2022 · Fundamentals

New Features and Improvements in Python 3.11

Python 3.11, the latest official release, brings substantial performance gains, richer error tracebacks, enhanced async task syntax, expanded type‑hint support, built‑in TOML parsing, zero‑cost exceptions, exception groups, faster startup, and numerous other refinements that together make the language both quicker and more developer‑friendly.

AsyncExceptionsTOML
0 likes · 9 min read
New Features and Improvements in Python 3.11
MaGe Linux Operations
MaGe Linux Operations
Oct 18, 2021 · Fundamentals

Choosing the Right Config File Format for Python Projects

This article explains why configuration files are essential, compares common formats such as INI, JSON, TOML, and YAML, and demonstrates how to read each using Python's built‑in libraries like configparser, json, toml, and PyYAML, including security considerations and best practices.

ConfigurationTOMLYAML
0 likes · 11 min read
Choosing the Right Config File Format for Python Projects