Tagged articles
70 articles
Page 1 of 1
21CTO
21CTO
May 17, 2026 · Fundamentals

How C++26’s Hardened Standard Library Tackles Undefined Behavior

The article explains that undefined behavior in C++ often stems from standard‑library misuse, describes the new C++26 P3471R4 hardened library that turns such UB into runtime contract violations, cites Google’s production data showing over a thousand bugs found with only 0.30% overhead and a 30% drop in segfaults, and details how to enable and use the feature.

CContractsHardening
0 likes · 8 min read
How C++26’s Hardened Standard Library Tackles Undefined Behavior
21CTO
21CTO
May 12, 2026 · Backend Development

Why Go Is the Most Direct Language for Backend Development

The article argues that Go’s fast compilation, single‑binary output, minimal dependencies, rich standard library, lightweight concurrency model, and built‑in tooling make it a straightforward, production‑ready choice for backend services, contrasting it with the complexity of typical Node, Rails, or JavaScript stacks.

Backend DevelopmentDeploymentGo
0 likes · 12 min read
Why Go Is the Most Direct Language for Backend Development
Tech Musings
Tech Musings
Apr 22, 2026 · Fundamentals

Go Standard Library Adds UUID Support with a Streamlined V4/V7 API

The Go team introduced a new uuid package to the standard library, offering lightweight functions for generating, parsing, serializing, and comparing UUID version 4 and version 7 values, integrating with database/sql, using a [16]byte type compatible with google/uuid, and providing detailed design rationale, implementation details, and a comparison with the existing third‑party library.

GoStandard Libraryapi-design
0 likes · 11 min read
Go Standard Library Adds UUID Support with a Streamlined V4/V7 API
DeepHub IMBA
DeepHub IMBA
Mar 10, 2026 · Fundamentals

7 Hidden Python Stdlib Tools That Simplify Your Code

The article presents seven powerful Python standard‑library features—generators for lazy evaluation, defaultdict for concise counting, pathlib for robust path handling, functools.partial for quick function specialization, itertools for flattening nested loops, type for dynamic class creation, and decorators for reusable logic—showing how each reduces memory usage, simplifies code, and improves automation.

GeneratorsPythonStandard Library
0 likes · 7 min read
7 Hidden Python Stdlib Tools That Simplify Your Code
Data STUDIO
Data STUDIO
Dec 18, 2025 · Fundamentals

10 Essential Python Standard Library Modules You Should Use Today

After a senior engineer pointed out that a custom task scheduler could be replaced by Python’s built‑in graphlib, the author explored the standard library and discovered ten modules—dis, singledispatch, ast, atexit, sys.settrace, tomllib, graphlib, heapq, secrets, and shutil—that simplify debugging, code organization, security, and cross‑platform file handling.

PythonStandard Librarydis
0 likes · 16 min read
10 Essential Python Standard Library Modules You Should Use Today
IT Services Circle
IT Services Circle
Oct 27, 2025 · Backend Development

Why Go’s HTTP/3 Proposal Stalled Again: Inside the Community Debate

The Go core team’s experimental HTTP/3 proposal, first introduced in 2024, has been postponed despite years of community demand, highlighting challenges in API design, backward compatibility, resource allocation, and the practical dominance of HTTP/2 over the newer protocol.

HTTP/3NetworkingQUIC
0 likes · 8 min read
Why Go’s HTTP/3 Proposal Stalled Again: Inside the Community Debate
21CTO
21CTO
Sep 29, 2025 · Backend Development

What’s New in Go 1.25? Core Generics, Performance Boosts, and GC Revolution

The article reviews Go 1.25’s major updates—including the removal of core types for generics, Cgroup‑aware GOMAXPROCS, the experimental greentea GC, a revamped JSON package, and toolchain enhancements—while offering migration tips and highlighting future language trends.

Garbage CollectionGenericsGo
0 likes · 8 min read
What’s New in Go 1.25? Core Generics, Performance Boosts, and GC Revolution
php Courses
php Courses
Sep 1, 2025 · Fundamentals

Mastering C++ Standard Exceptions: From Basics to Custom Errors

This article explains why using C++ standard exception classes is essential, outlines the exception hierarchy, details common logical and runtime error types, demonstrates throwing and catching exceptions with code examples, and shows how to create custom exception classes for robust error handling.

CError HandlingException Handling
0 likes · 11 min read
Mastering C++ Standard Exceptions: From Basics to Custom Errors
IT Services Circle
IT Services Circle
Aug 24, 2025 · Backend Development

What’s New in Go 1.25? Key Toolchain, Runtime, and Library Enhancements

Go 1.25, released in August 2025, brings a suite of toolchain, runtime, and standard‑library upgrades—including default memory‑leak detection, a new go.mod ignore directive, container‑aware GOMAXPROCS, experimental greentea GC, JSON V2, and several new diagnostics—without changing the language syntax.

ContainerGoGo 1.25
0 likes · 8 min read
What’s New in Go 1.25? Key Toolchain, Runtime, and Library Enhancements
Alibaba Cloud Native
Alibaba Cloud Native
Jul 7, 2025 · Fundamentals

What Drives Python’s 16‑Year Evolution? From Legacy Syntax to AI‑Ready Performance

This article traces Python’s sixteen‑year journey from the release of Python 3.0 in 2008 to the upcoming 3.14, highlighting modernized syntax, type‑hint maturation, standard‑library pruning, massive third‑party growth, performance breakthroughs such as Faster CPython and experimental JIT, free‑threading, and the AI and cloud forces shaping its future.

AsyncFree ThreadingJIT
0 likes · 25 min read
What Drives Python’s 16‑Year Evolution? From Legacy Syntax to AI‑Ready Performance
Python Programming Learning Circle
Python Programming Learning Circle
Jul 5, 2025 · Fundamentals

Unlock Hidden Python Gems: Master difflib, sched, binascii, tty, and weakref

Explore lesser-known Python standard-library modules—including difflib, sched, binascii, tty, and weakref—through clear explanations and practical code snippets that demonstrate how to compare strings, schedule events, encode data, manage terminal I/O, and work with weak references, empowering you to expand your programming toolkit.

PythonStandard LibraryTTY
0 likes · 9 min read
Unlock Hidden Python Gems: Master difflib, sched, binascii, tty, and weakref
BirdNest Tech Talk
BirdNest Tech Talk
Jun 13, 2025 · Cloud Native

Go 1.25 Deep Dive: Performance Boosts, New Tools, and Cloud‑Native Features

Go 1.25 introduces an experimental greenteagc garbage collector, container‑aware GOMAXPROCS, enhanced go vet analyzers, new go.mod ignore directive, work package mode, expanded standard library (including testing/synctest and experimental JSON v2), platform updates, and security hardening, all aimed at higher performance, developer productivity, and cloud‑native readiness.

Cloud NativeGoRuntime
0 likes · 26 min read
Go 1.25 Deep Dive: Performance Boosts, New Tools, and Cloud‑Native Features
Raymond Ops
Raymond Ops
Jun 10, 2025 · Fundamentals

Unlock Python’s Hidden Gems: Essential Built‑in Functions Every Developer Should Know

This article introduces a curated collection of Python’s most useful built‑in functions and standard‑library modules—including all, any, argparse, Counter, defaultdict, dataclass, datetime, lru_cache, itertools.chain, json, pickle, pprint, re, timeit, and uuid—explaining their purpose, providing clear usage examples, and highlighting practical scenarios where they simplify everyday coding tasks.

PythonStandard Librarybuilt-in functions
0 likes · 39 min read
Unlock Python’s Hidden Gems: Essential Built‑in Functions Every Developer Should Know
php Courses
php Courses
Jun 10, 2025 · Backend Development

Unlock Go’s Power: Master the Most Essential Standard Library Packages

This guide walks through Go’s most powerful standard library packages—fmt, net/http, sync, encoding/json, context, os/io, testing, time, sort, and reflect—showing practical code examples, advanced tips, and best‑practice recommendations to boost development efficiency and write professional Go code.

GoJSONStandard Library
0 likes · 20 min read
Unlock Go’s Power: Master the Most Essential Standard Library Packages
php Courses
php Courses
Apr 15, 2025 · Fundamentals

Top 20 Most Common Python Standard Library Modules

This article introduces the twenty most frequently used Python standard library modules, such as os, sys, math, random, datetime, json, re, collections, itertools, argparse, and others, explaining their core functionalities and providing concise code examples to help developers efficiently manage files, data, networking, and more.

ModulesPythonStandard Library
0 likes · 8 min read
Top 20 Most Common Python Standard Library Modules
Python Programming Learning Circle
Python Programming Learning Circle
Apr 11, 2025 · Fundamentals

Comprehensive Overview of Python Standard Library Modules

This article provides a detailed, categorized reference of Python's standard library modules, covering text processing, data types, mathematics, functional programming, file handling, persistence, compression, encryption, OS utilities, concurrency, inter‑process communication, internet protocols, multimedia, internationalization, frameworks, GUI toolkits, development tools, debugging, runtime, interpreter internals, import mechanisms, language utilities, as well as Windows‑ and Unix‑specific modules.

ModulesStandard Libraryprogramming
0 likes · 15 min read
Comprehensive Overview of Python Standard Library Modules
FunTester
FunTester
Apr 3, 2025 · Backend Development

Avoid These 5 Common Go Standard Library Pitfalls and Write Safer Code

This article examines frequent mistakes developers make when using Go’s standard library—such as misusing time.Duration, causing memory leaks with time.After, JSON serialization quirks, improper SQL handling, and HTTP response errors—providing concrete code examples and best‑practice solutions to write more reliable, efficient Go programs.

Error HandlingGoStandard Library
0 likes · 14 min read
Avoid These 5 Common Go Standard Library Pitfalls and Write Safer Code
Test Development Learning Exchange
Test Development Learning Exchange
Mar 14, 2025 · Fundamentals

Introduction to Common Python Standard Library Modules

This article introduces several essential Python standard library modules—including os, sys, datetime, math, random, json, re, sqlite3, argparse, logging, and collections—providing brief descriptions and example code snippets that demonstrate their basic usage for file handling, system information, date-time operations, mathematics, randomness, data serialization, regular expressions, database interaction, command-line parsing, logging, and advanced data structures.

ModulesPythonStandard Library
0 likes · 3 min read
Introduction to Common Python Standard Library Modules
Test Development Learning Exchange
Test Development Learning Exchange
Nov 6, 2024 · Fundamentals

Overview of Common Python Standard Library Modules

This article provides a concise overview of twenty essential Python standard library modules, covering their primary purposes and frequently used functions such as file handling, system interaction, data processing, networking, concurrency, compression, and serialization, helping developers improve productivity across various programming tasks.

ModulesPythonStandard Library
0 likes · 8 min read
Overview of Common Python Standard Library Modules
Test Development Learning Exchange
Test Development Learning Exchange
Nov 1, 2024 · Fundamentals

Comprehensive Python Basics: Variables, Data Types, Control Structures, Functions, OOP, Standard Library, and More

This article provides a comprehensive Python tutorial covering variables, data types, control structures, functions, classes, standard library modules, file I/O, exception handling, comprehensions, generators, decorators, modules, virtual environments, coding style, and Git version control, complete with example code snippets.

Control structuresPythonStandard Library
0 likes · 14 min read
Comprehensive Python Basics: Variables, Data Types, Control Structures, Functions, OOP, Standard Library, and More
MaGe Linux Operations
MaGe Linux Operations
Oct 25, 2024 · Fundamentals

Unlock Python’s Hidden Gems: Master Essential Built‑in Functions and Modules

Explore a comprehensive guide to Python’s most useful built‑in functions and standard‑library modules—including all, any, argparse, Counter, defaultdict, dataclasses, datetime, functools.lru_cache, itertools.chain, json, pickle, pprint, re, timeit, and uuid—complete with clear explanations, practical examples, and real‑world use cases to boost your coding efficiency.

Code ExamplesStandard Library
0 likes · 44 min read
Unlock Python’s Hidden Gems: Master Essential Built‑in Functions and Modules
21CTO
21CTO
Oct 13, 2024 · Backend Development

What’s New in Deno 2.0? A Deep Dive into Its Node.js Compatibility and Updated Standard Library

Deno 2.0, the latest production release of the open‑source Deno runtime, brings major updates for JavaScript, TypeScript and WebAssembly, offers full backward compatibility with Node.js and npm, stabilizes its standard library, introduces private NPM registry support, workspace/monorepo features, and adds enhanced formatting, linting, and coverage tools.

DenoJavaScriptNode.js compatibility
0 likes · 4 min read
What’s New in Deno 2.0? A Deep Dive into Its Node.js Compatibility and Updated Standard Library
Open Source Tech Hub
Open Source Tech Hub
Aug 16, 2024 · Backend Development

Unlock Modern PHP Development with the PSL Standard Library

The article introduces azjezz/psl, a PHP Standard Library inspired by hhvm/hsl, explains its goals, features, Composer installation, integration with Psalm and PHPStan, and provides detailed code examples for async tasks, password handling, Unix socket communication, and TCP parallel networking.

ComposerPHPPSL
0 likes · 9 min read
Unlock Modern PHP Development with the PSL Standard Library
BirdNest Tech Talk
BirdNest Tech Talk
Jul 26, 2024 · Fundamentals

How to Choose Between Rust’s LazyLock, LazyCell, OnceLock, and OnceCell

Rust 1.80 introduces LazyCell and LazyLock, synchronized lazy-initialization primitives that differ from OnceCell and OnceLock in thread safety and built‑in initialization, and this article explains their characteristics, trade‑offs, and provides concrete code examples to help developers select the appropriate type for their use case.

RustStandard LibrarySync Primitives
0 likes · 8 min read
How to Choose Between Rust’s LazyLock, LazyCell, OnceLock, and OnceCell
Test Development Learning Exchange
Test Development Learning Exchange
Jun 26, 2024 · Fundamentals

Overview of Common Python Standard Library Modules

This article provides practical code examples for using key Python standard library modules—including os, sys, json, datetime, re, math, collections, urllib, random, and logging—to perform common tasks such as file operations, system info, data parsing, date handling, pattern matching, calculations, data structures, web requests, random generation, and logging.

JSONPythonStandard Library
0 likes · 4 min read
Overview of Common Python Standard Library Modules
Ops Development & AI Practice
Ops Development & AI Practice
Apr 5, 2024 · Backend Development

Unlocking Go’s log Package: Simple, Flexible, and Concurrency‑Safe Logging

This article explains the importance of logging, outlines the Go standard library log package’s design highlights—simplicity, flexibility, concurrency safety, and customizability—describes its core Logger structure, shows how mutexes ensure thread‑safe writes, and provides practical code examples with guidance on extending functionality.

BackendGoStandard Library
0 likes · 8 min read
Unlocking Go’s log Package: Simple, Flexible, and Concurrency‑Safe Logging
Python Programming Learning Circle
Python Programming Learning Circle
Oct 16, 2023 · Fundamentals

Lesser‑Known Python Standard Library Modules: difflib, sched, binascii, tty, and weakref

This article introduces several lesser‑known Python standard‑library modules—including difflib, sched, binascii, tty, and weakref—explaining their key functions, typical use‑cases, and providing concise code examples to help developers quickly incorporate these utilities into their projects.

PythonStandard LibraryTTY
0 likes · 10 min read
Lesser‑Known Python Standard Library Modules: difflib, sched, binascii, tty, and weakref
Liangxu Linux
Liangxu Linux
Sep 14, 2023 · Fundamentals

Master the Essential C Standard Library Functions for Professional Coding

This guide explores the most commonly used C standard library headers—stdio.h, stdlib.h, and string.h—detailing each function’s purpose, usage, and providing clear code examples such as printf, malloc, strcpy, and qsort to help programmers write cleaner, more efficient C code.

CCode ExamplesSTDIO
0 likes · 11 min read
Master the Essential C Standard Library Functions for Professional Coding
21CTO
21CTO
Aug 10, 2023 · Backend Development

What’s New in Go 1.21? Key Features, Performance Boosts, and Code Samples

Go 1.21.0 introduces toolchain enhancements, new built‑in functions, expanded standard library packages, performance improvements through PGO and garbage‑collector tuning, experimental WASI support, and version‑number changes, all illustrated with concise code examples for developers.

GoStandard LibraryToolchain
0 likes · 7 min read
What’s New in Go 1.21? Key Features, Performance Boosts, and Code Samples
Laravel Tech Community
Laravel Tech Community
Aug 9, 2023 · Backend Development

Go 1.21 Released: Toolchain Enhancements, PGO GA, Language Updates, New Standard Library Packages, and Experimental WASI Support

Go 1.21 has been officially released, introducing toolchain improvements such as GA‑ready profile‑guided optimization, new built‑in functions, several standard library packages, performance boosts, and experimental support for the WebAssembly System Interface (WASI).

PGOProgramming LanguageStandard Library
0 likes · 6 min read
Go 1.21 Released: Toolchain Enhancements, PGO GA, Language Updates, New Standard Library Packages, and Experimental WASI Support
Python Programming Learning Circle
Python Programming Learning Circle
Jun 30, 2023 · Fundamentals

Modern Python Standard Library: Pathlib, Secrets, ZoneInfo, Dataclasses, Logging, f‑strings, Tomllib, and Setuptools

This article reviews several modern Python standard‑library modules—Pathlib, Secrets, ZoneInfo, Dataclasses, proper logging, f‑strings, Tomllib, and Setuptools—explaining why they replace older alternatives and providing concise code examples to help developers adopt best practices and keep their projects up‑to‑date.

Standard Librarydataclasseslogging
0 likes · 13 min read
Modern Python Standard Library: Pathlib, Secrets, ZoneInfo, Dataclasses, Logging, f‑strings, Tomllib, and Setuptools
Python Programming Learning Circle
Python Programming Learning Circle
Mar 23, 2023 · Fundamentals

Lesser‑Known Python Standard Library Modules: difflib, sched, binascii, tty, and weakref

This article introduces several useful but often overlooked Python standard‑library modules—including difflib for sequence comparison, sched for event scheduling, binascii for binary‑ASCII conversion, tty for terminal handling, and weakref for weak references—explaining their key functions, typical usage patterns, and providing concrete code examples.

Standard LibraryTTYbinascii
0 likes · 10 min read
Lesser‑Known Python Standard Library Modules: difflib, sched, binascii, tty, and weakref
Python Programming Learning Circle
Python Programming Learning Circle
Mar 18, 2023 · Fundamentals

PEP‑594: Removing Dead Batteries from the Python Standard Library

PEP‑594, approved for Python 3.11‑3.13, removes over‑aged and unmaintained modules from the standard library, revitalizing the language’s “batteries‑included” philosophy by reducing maintenance costs, improving security, and benefiting resource‑constrained platforms while also streamlining future development.

PEP-594Standard Librarybatteries-included
0 likes · 6 min read
PEP‑594: Removing Dead Batteries from the Python Standard Library
Laravel Tech Community
Laravel Tech Community
Feb 2, 2023 · Fundamentals

Go 1.20 Release Highlights: New Toolchain, Runtime, and Library Features

Go 1.20, released six months after Go 1.19, introduces major toolchain, runtime, and standard library enhancements, adds experimental RISC‑V support, updates syntax with slice‑to‑array conversion and new unsafe functions, and includes numerous performance and build‑system improvements.

Programming LanguageRuntimeStandard Library
0 likes · 5 min read
Go 1.20 Release Highlights: New Toolchain, Runtime, and Library Features
MaGe Linux Operations
MaGe Linux Operations
Nov 25, 2022 · Fundamentals

5 Little‑Known Python Standard Library Modules You Should Use

Discover five obscure yet powerful Python standard‑library modules—difflib, sched, binaascii, tty, and weakref—along with their key functions, usage examples, and practical tips, enabling developers of any skill level to expand their toolkit and streamline tasks such as string comparison, scheduling, encoding, terminal handling, and memory management.

PythonStandard LibraryTTY
0 likes · 10 min read
5 Little‑Known Python Standard Library Modules You Should Use
MaGe Linux Operations
MaGe Linux Operations
Apr 29, 2022 · Fundamentals

Discover 5 Hidden Python Modules That Can Supercharge Your Code

This article introduces five lesser‑known Python standard‑library modules—difflib, sched, binascii, tty, and weakref—explaining their key functions, typical use cases, and providing concise code examples so developers can quickly incorporate these powerful tools into their projects.

ModulesPythonStandard Library
0 likes · 9 min read
Discover 5 Hidden Python Modules That Can Supercharge Your Code
MaGe Linux Operations
MaGe Linux Operations
Feb 6, 2022 · Fundamentals

Avoid Common Python Pitfalls: A Practical Guide for C/C++ Migrants

This guide explains frequently confused Python operations, compares Python idioms with C/C++ conventions, introduces essential standard‑library tools, and offers performance‑oriented debugging techniques to help developers write cleaner, faster, and more reliable Python code.

DebuggingPythonStandard Library
0 likes · 16 min read
Avoid Common Python Pitfalls: A Practical Guide for C/C++ Migrants
Python Programming Learning Circle
Python Programming Learning Circle
Jan 3, 2022 · Fundamentals

Python Gotchas, C/C++ Migration Tips, and Handy Utilities

This article presents a collection of Python pitfalls such as random sampling, lambda binding, copying, equality vs identity, and type checks, followed by a concise guide for C/C++ programmers transitioning to Python, and showcases useful tools like CSV handling, itertools, collections, and performance‑debugging techniques.

Code ExamplesPythonStandard Library
0 likes · 17 min read
Python Gotchas, C/C++ Migration Tips, and Handy Utilities
Python Programming Learning Circle
Python Programming Learning Circle
Jul 19, 2021 · Fundamentals

An Introduction to Python's itertools Library

This article introduces Python's itertools module, explaining its purpose for creating efficient iterators, and provides concise examples of functions such as accumulate, chain, combinations, compress, count, cycle, dropwhile, filterfalse, groupby, islice, permutations, product, repeat, starmap, takewhile, tee, and zip_longest, each illustrated with runnable code snippets.

IteratorsStandard Libraryfunctional programming
0 likes · 9 min read
An Introduction to Python's itertools Library
Python Programming Learning Circle
Python Programming Learning Circle
Mar 5, 2021 · Fundamentals

Python Built‑in Functions and Common Usage

This article introduces Python's built‑in functions, data types, numeric conversions, mathematical utilities, sequence and collection constructors, iteration tools, scope inspection, dynamic code execution, memory introspection, file handling, and module import techniques, providing concise code examples for each concept.

Code ExecutionData TypesPython
0 likes · 11 min read
Python Built‑in Functions and Common Usage
dbaplus Community
dbaplus Community
Jan 3, 2021 · Fundamentals

Why C Still Rules: A Deep Dive into Its History, Evolution, and Legacy

This article chronicles the origins and development of the C programming language, profiles its creators, examines its ancestors BCPL and B, explores early compiler construction, compares language features, showcases classic code examples, and highlights the enduring relevance of C in modern systems and libraries.

BCPLC languageCode Examples
0 likes · 23 min read
Why C Still Rules: A Deep Dive into Its History, Evolution, and Legacy
MaGe Linux Operations
MaGe Linux Operations
Oct 18, 2020 · Fundamentals

Explore Python’s Essential Standard Library Modules for Every Developer

This article provides a concise overview of Python’s built‑in standard library modules, covering text handling, data structures, mathematics, functional programming, file and directory utilities, persistence, compression, encryption, OS tools, concurrency, inter‑process communication, and internet protocols, helping developers quickly locate the right tool for their tasks.

ModulesPythonStandard Library
0 likes · 7 min read
Explore Python’s Essential Standard Library Modules for Every Developer
Python Crawling & Data Mining
Python Crawling & Data Mining
Oct 7, 2020 · Fundamentals

Unlock Python’s sys Module: 12 Essential Variables Explained

This article introduces Python’s sys module, a core standard‑library component closely tied to the interpreter, and walks through twelve of its most useful attributes—such as argv, path, modules, executable, and version—providing concise explanations, code snippets, and visual illustrations to help readers understand and apply each variable effectively.

PythonStandard LibraryVariables
0 likes · 5 min read
Unlock Python’s sys Module: 12 Essential Variables Explained
Python Programming Learning Circle
Python Programming Learning Circle
Jun 8, 2020 · Fundamentals

10 Smooth Python Tricks for Python Gods

This article presents ten practical Python tricks—including string reversal, variable unpacking, itertools usage, slicing, grouping adjacent items, generator next(), Counter, and deque operations—demonstrating how to leverage built‑in functions and standard‑library modules to write cleaner, more efficient code.

PythonStandard Libraryfundamentals
0 likes · 9 min read
10 Smooth Python Tricks for Python Gods
MaGe Linux Operations
MaGe Linux Operations
May 26, 2018 · Fundamentals

Unlock Python’s Power: Master itertools for Efficient Iteration

This article introduces Python’s itertools library, explains why iterators improve performance, and provides clear examples of its most useful functions—such as accumulate, chain, combinations, and more—so readers can write cleaner, faster, and more Pythonic code.

GeneratorsPythonStandard Library
0 likes · 10 min read
Unlock Python’s Power: Master itertools for Efficient Iteration
MaGe Linux Operations
MaGe Linux Operations
Dec 1, 2017 · Fundamentals

Unlocking Python’s re Module: Hidden Gems and Advanced Techniques

This article explores the stability, design quirks, and advanced features of Python’s re library—including iterative matching, the undocumented scanner, and strategies for negative matching—showcasing why it remains a cornerstone of the language despite its age.

Advanced TechniquesPythonStandard Library
0 likes · 11 min read
Unlocking Python’s re Module: Hidden Gems and Advanced Techniques
Architecture Digest
Architecture Digest
Jan 1, 2017 · Fundamentals

Python 3.6 Release Highlights and New Features

The Python 3.6 release introduces numerous language enhancements such as f‑strings, variable annotations, underscore separators in numeric literals, async generators, and improved dictionary implementation, along with extensive standard‑library updates, security improvements, Windows encoding changes, performance optimizations, and new C‑API features.

PEPSecurityStandard Library
0 likes · 30 min read
Python 3.6 Release Highlights and New Features