Tagged articles
50 articles
Page 1 of 1
IT Services Circle
IT Services Circle
Feb 5, 2026 · Fundamentals

Unlock Python 3.9‑3.12: New Built‑in Functions That Simplify Everyday Coding

This article walks through the most useful built‑in functions and modules introduced in Python 3.9 through 3.12—including str.removeprefix/removesuffix, math.dist, math.comb, zoneinfo, hashlib.blake2b, and tomllib—showing how they eliminate boiler‑plate, boost performance, and reduce external dependencies.

Code Optimizationbuilt-in functionspython-3.12
0 likes · 9 min read
Unlock Python 3.9‑3.12: New Built‑in Functions That Simplify Everyday Coding
Data STUDIO
Data STUDIO
Jan 30, 2026 · Fundamentals

Discover Python’s New Built‑in Functions That Simplify Your Code

From Python 3.9 to 3.12 the standard library adds a suite of ready‑to‑use functions—such as str.removeprefix/removesuffix, math.dist, math.comb, zoneinfo, hashlib.blake2b, and tomllib—that eliminate repetitive code, boost performance, and let developers focus on core logic.

Pythonbuilt-in functionshashlib
0 likes · 9 min read
Discover Python’s New Built‑in Functions That Simplify Your Code
Code Mala Tang
Code Mala Tang
Oct 4, 2025 · Fundamentals

12 Essential Python Built‑in Functions Every Developer Should Master

Discover twelve powerful Python built‑in functions—from enumerate and zip to globals and locals—explained with clear examples, showing how they simplify indexing, pairing data, condition checks, sorting, mapping, filtering, and introspection, helping you write cleaner, more efficient code.

Code OptimizationPythonbuilt-in functions
0 likes · 9 min read
12 Essential Python Built‑in Functions Every Developer Should Master
Alibaba Cloud Big Data AI Platform
Alibaba Cloud Big Data AI Platform
Aug 15, 2025 · Big Data

How MaxCompute Extends SQL to Match BigQuery – New Features & Compatibility

This article details the challenges of migrating 100,000+ SQL statements from BigQuery to MaxCompute for a leading Southeast Asian tech group, explains the new MaxCompute SQL syntax, auto‑partition and ingestion‑time tables, enhanced built‑in functions, and the BigQuery compatibility mode that ensures seamless query behavior.

BigQueryCompatibilityData Migration
0 likes · 15 min read
How MaxCompute Extends SQL to Match BigQuery – New Features & Compatibility
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
May 29, 2025 · Backend Development

6 Practical PHP Performance Optimization Techniques

This article outlines six practical PHP performance optimization techniques—including opcode caching, database query tuning, reducing redundant calculations, choosing efficient data structures, employing lazy loading, and leveraging built‑in functions—to help developers significantly improve the speed and scalability of their backend applications.

Backend DevelopmentDatabase OptimizationOPcache
0 likes · 5 min read
6 Practical PHP Performance Optimization Techniques
Test Development Learning Exchange
Test Development Learning Exchange
May 22, 2025 · Fundamentals

Understanding Python Iterables: Concepts, Creation, Built‑in Functions, Comprehensions, Advanced Operations, and Generators

This article explains Python iterables, covering their basic concepts, how to create and use them with loops, iter() and next(), built‑in functions that accept iterables, comprehension techniques, advanced operations like zip, enumerate, filter, map, and their relationship with generators for efficient data processing.

ComprehensionsGeneratorsIterable
0 likes · 7 min read
Understanding Python Iterables: Concepts, Creation, Built‑in Functions, Comprehensions, Advanced Operations, and Generators
Python Programming Learning Circle
Python Programming Learning Circle
Apr 24, 2025 · Fundamentals

50 Essential Python Built-in Functions and Their Usage

This article introduces fifty essential Python built-in functions, covering type conversion, numeric operations, sequence handling, I/O, string manipulation, and utility functions, each with concise explanations and code examples to help readers quickly understand and apply these fundamental tools in their programs.

Code ExamplesData Typesbuilt-in functions
0 likes · 9 min read
50 Essential Python Built-in Functions and Their Usage
Test Development Learning Exchange
Test Development Learning Exchange
Mar 2, 2025 · Fundamentals

Common Python Built‑in Functions with Examples

This article introduces Python's most frequently used built-in functions, such as len, type, print, range, sum, and others, providing clear explanations, practical use cases, and complete code examples to help readers understand and apply these essential tools for efficient programming.

Code ExamplesPythonTutorial
0 likes · 13 min read
Common Python Built‑in Functions with Examples
Test Development Learning Exchange
Test Development Learning Exchange
Feb 15, 2025 · Fundamentals

Overview of Common Python Built‑in Functions, itertools, and operator Utilities

This article introduces essential Python built‑in functions such as map, filter, reduce, sorted, any, all, zip, enumerate, and utilities from functools, itertools, and operator modules, providing concise explanations and practical code examples for each to help readers master fundamental programming techniques.

OperatorPythonbuilt-in functions
0 likes · 8 min read
Overview of Common Python Built‑in Functions, itertools, and operator Utilities
Python Programming Learning Circle
Python Programming Learning Circle
Nov 21, 2024 · Fundamentals

Python Performance Optimization Techniques: Built‑in Functions, List Comprehensions, Generators, Caching, NumPy, Multiprocessing and More

This article introduces a range of Python performance‑optimization methods—including built‑in functions, list comprehensions, generator expressions, avoiding globals, functools.lru_cache, NumPy, pandas, multiprocessing, Cython, PyPy, and line_profiler—illustrated with clear code examples and a practical image‑processing case study.

Performance Optimizationbuilt-in functionslist-comprehension
0 likes · 8 min read
Python Performance Optimization Techniques: Built‑in Functions, List Comprehensions, Generators, Caching, NumPy, Multiprocessing and More
Test Development Learning Exchange
Test Development Learning Exchange
Nov 8, 2024 · Fundamentals

Common Python Built‑in Functions with Examples

This article introduces a collection of frequently used Python built‑in functions, explains their purpose, provides concise code examples for each, and shows the corresponding output to help readers write more efficient and readable Python code.

Code ExamplesPythonbuilt-in functions
0 likes · 14 min read
Common Python Built‑in Functions with Examples
Liangxu Linux
Liangxu Linux
Nov 4, 2024 · Fundamentals

Unlocking GNU C Extensions: Zero‑Length Arrays, Variable‑Length Arrays, and More

This guide explains key GNU C extensions—including zero‑length and variable‑length arrays, case ranges, statement expressions, typeof, variadic macros, designated initializers, built‑in functions, and attribute syntax—showing how they differ from standard ANSI C and how to use them safely in Linux kernel development.

C extensionsGNU CLinux kernel
0 likes · 10 min read
Unlocking GNU C Extensions: Zero‑Length Arrays, Variable‑Length Arrays, and More
Test Development Learning Exchange
Test Development Learning Exchange
Oct 24, 2024 · Fundamentals

Common Built‑in Functions and Popular Third‑Party Libraries in Python with Examples

This article lists essential Python built‑in functions, introduces widely used third‑party libraries such as NumPy, Pandas, Matplotlib, Scikit‑learn, TensorFlow, Requests, Beautiful Soup, Flask/Django, SQLAlchemy, SciPy, Pillow and OpenCV, and provides concrete code examples demonstrating their usage.

PythonThird‑party librariesbuilt-in functions
0 likes · 21 min read
Common Built‑in Functions and Popular Third‑Party Libraries in Python with Examples
Test Development Learning Exchange
Test Development Learning Exchange
Sep 10, 2024 · Fundamentals

Master Python Basics: Error Handling, Files, OOP, and More

This guide walks through essential Python concepts—including try/except error handling, file reading and writing, class definitions with inheritance, variable scopes, common built‑in functions, docstrings, comments, and command‑line argument processing—providing clear code examples for each topic.

DocstringsError HandlingOOP
0 likes · 8 min read
Master Python Basics: Error Handling, Files, OOP, and More
Test Development Learning Exchange
Test Development Learning Exchange
Sep 8, 2024 · Fundamentals

Python Essentials: List, Dictionary, Set Comprehensions, Unpacking, and Useful Built‑in Functions

This guide presents a concise collection of Python fundamentals, covering list, dictionary, and set comprehensions, various unpacking techniques, conditional expressions, common built‑in functions such as zip, enumerate, sorted, reversed, join, map, filter, any/all, min/max, sum, reduce, as well as useful modules like itertools, os, sys, time, collections, functools, heapq, bisect, json, re, and numpy, each illustrated with clear code examples.

ComprehensionsPythonbuilt-in functions
0 likes · 11 min read
Python Essentials: List, Dictionary, Set Comprehensions, Unpacking, and Useful Built‑in Functions
Python Programming Learning Circle
Python Programming Learning Circle
Sep 7, 2024 · Fundamentals

Performance Comparison of while and for Loops in Python

This article examines the speed differences between Python's while and for loops by benchmarking summation tasks, explains why for loops are faster due to fewer Python‑level operations, and demonstrates how built‑in functions or mathematical formulas can achieve dramatically higher performance, ultimately concluding that avoiding explicit loops yields the best results.

Benchmarkbuilt-in functionsloop performance
0 likes · 6 min read
Performance Comparison of while and for Loops in Python
21CTO
21CTO
Sep 2, 2024 · Fundamentals

6 Essential Python Coding Habits Every Beginner Should Master

This article outlines six practical habits—following PEP 8, using the latest Python version, commenting code, employing linters, leveraging built‑in functions and libraries, and promptly fixing issues—to help new Python developers write clean, maintainable, and error‑free code throughout their careers.

PEP 8Pythonbest practices
0 likes · 10 min read
6 Essential Python Coding Habits Every Beginner Should Master
21CTO
21CTO
Aug 26, 2024 · Fundamentals

6 Essential Python Coding Habits Every Developer Should Master

This article outlines six practical Python coding habits—including following PEP 8, using the latest version, commenting effectively, employing linters, leveraging built‑in functions and libraries, and fixing issues promptly—to help developers write clean, maintainable, and error‑free code.

PEP 8Pythonbuilt-in functions
0 likes · 9 min read
6 Essential Python Coding Habits Every Developer Should Master
Test Development Learning Exchange
Test Development Learning Exchange
Jun 28, 2024 · Fundamentals

Common Python Built-in Functions and Their Usage

This article introduces a collection of essential Python built-in functions—such as print, len, type, range, sum, sorted, abs, round, input, any/all, zip, enumerate, filter, map, reversed, and setdefault—explaining their typical use cases and providing concise code examples for each.

Code ExamplesPythonbuilt-in functions
0 likes · 5 min read
Common Python Built-in Functions and Their Usage
Python Programming Learning Circle
Python Programming Learning Circle
Mar 29, 2024 · Fundamentals

Comprehensive Guide to Python Built-in Functions with Examples

This article presents a detailed overview of Python's 66 built-in functions, explaining each function's purpose and providing concise example code snippets that demonstrate typical usage, making it a valuable resource for beginners and intermediate programmers seeking to master fundamental Python capabilities.

Pythonbuilt-in functions
0 likes · 10 min read
Comprehensive Guide to Python Built-in Functions with Examples
Test Development Learning Exchange
Test Development Learning Exchange
Mar 17, 2024 · Fundamentals

Python Built-in Functions Reference

This reference lists Python's built‑in functions, providing concise English descriptions and example code snippets for each, covering topics from basic type conversions and arithmetic to object introspection and file handling and utility operations.

Pythonbasicsbuilt-in functions
0 likes · 19 min read
Python Built-in Functions Reference
Test Development Learning Exchange
Test Development Learning Exchange
Mar 16, 2024 · Fundamentals

Python Built-in Functions and Utilities

This article introduces 10 essential Python built-in functions and utilities including enumerate(), zip(), filter(), map(), sorted(), functools.partial(), itertools.combinations(), lambda, getattr()/setattr(), and reversed(), with practical code examples for each.

LambdaMAPPython
0 likes · 3 min read
Python Built-in Functions and Utilities
Open Source Tech Hub
Open Source Tech Hub
Jan 28, 2024 · Backend Development

Unlock Powerful PHP Built‑in Functions: Levenshtein, Easter Date, Forks & More

Explore a collection of essential PHP built‑in functions—from string distance with levenshtein and phonetic matching via metaphone, to date calculations, DNS queries, array merging, email sending, dynamic extension loading, file globbing, and process forking—complete with clear code examples and expected outputs.

Date FunctionsEmailProcess Control
0 likes · 8 min read
Unlock Powerful PHP Built‑in Functions: Levenshtein, Easter Date, Forks & More
MaGe Linux Operations
MaGe Linux Operations
Jan 17, 2024 · Fundamentals

Master Python’s Built‑In Functions: From range to zip

This article introduces Python’s most useful built‑in functions—including range, mathematical utilities, base‑conversion, string methods, and iterable helpers—explaining their parameters, showing practical examples, and demonstrating how they simplify common programming tasks.

Pythonbuilt-in functionsfundamentals
0 likes · 9 min read
Master Python’s Built‑In Functions: From range to zip
php Courses
php Courses
Dec 12, 2023 · Backend Development

Optimizing PHP Performance with Efficient Built-in Functions

This article explains how to improve PHP web application performance by replacing slower built‑in functions such as count(), array_search(), preg_replace(), and mysqli_fetch_array() with faster alternatives like strlen() with implode(), in_array(), str_replace(), and mysqli_fetch_assoc(), and also shows how to free memory using unset().

PHPbuilt-in functionsoptimization
0 likes · 6 min read
Optimizing PHP Performance with Efficient Built-in Functions
Python Programming Learning Circle
Python Programming Learning Circle
Nov 2, 2023 · Fundamentals

Python Built‑in Functions, Data Types, and Common Operations Overview

This article provides a comprehensive overview of Python's built‑in functions, including numeric, sequence, mapping, and conversion utilities, demonstrates data type usage such as bool, int, float, complex, and shows practical code examples for operations like sorting, filtering, iteration, file handling, and dynamic execution.

Code ExamplesData Typesbuilt-in functions
0 likes · 15 min read
Python Built‑in Functions, Data Types, and Common Operations Overview
Test Development Learning Exchange
Test Development Learning Exchange
Aug 10, 2023 · Fundamentals

Python Built‑in Functions for Data Type Casting

This article explains how to use Python's built‑in casting functions—int(), float(), str(), bool(), list(), tuple(), set() and dict()—to convert between numeric, string, boolean, sequence, and mapping types, providing clear code examples for each conversion scenario.

ListPythonbool
0 likes · 14 min read
Python Built‑in Functions for Data Type Casting
Laravel Tech Community
Laravel Tech Community
May 28, 2023 · Backend Development

Seven Lesser‑Known PHP Built‑in Functions and How to Use Them

This article introduces seven relatively obscure but highly useful PHP built‑in functions—highlight_string, str_word_count, levenshtein, get_defined_vars, escapeshellcmd, checkdate, and php_strip_whitespace—explaining their purpose and providing clear code examples for each.

BackendCode Examplesbuilt-in functions
0 likes · 4 min read
Seven Lesser‑Known PHP Built‑in Functions and How to Use Them
Model Perspective
Model Perspective
May 28, 2022 · Fundamentals

Master Python Built-in Functions and Custom Function Basics

This article introduces Python's built-in functions such as type, len, sum, round, and sorted, explains data type conversion utilities, demonstrates numeric conversions, and provides a step‑by‑step guide to defining and using custom functions with default arguments.

Custom FunctionsPythonbuilt-in functions
0 likes · 5 min read
Master Python Built-in Functions and Custom Function Basics
Open Source Linux
Open Source Linux
Feb 28, 2022 · Fundamentals

Unlock Python’s 68 Built‑in Functions: A Complete Guide for Beginners

This article presents a comprehensive overview of Python’s 68 built‑in functions, categorizing them into numeric, data‑structure, scope, iterator, string execution, I/O, memory, file, module, and utility groups, and provides clear code examples for each to help beginners master Python fundamentals.

Code ExecutionData Structuresbuilt-in functions
0 likes · 18 min read
Unlock Python’s 68 Built‑in Functions: A Complete Guide for Beginners
Sohu Tech Products
Sohu Tech Products
Dec 22, 2021 · Fundamentals

The Fastest Way to Loop in Python: Using Built‑in Functions and Math Instead of While/For Loops

This article demonstrates that in Python, plain while and for loops are significantly slower than using built‑in functions like sum or applying a direct mathematical formula, because the former execute extra Python‑level boundary checks and increments, making the latter the most efficient looping alternatives.

Sumbuilt-in functionsfor loop
0 likes · 7 min read
The Fastest Way to Loop in Python: Using Built‑in Functions and Math Instead of While/For Loops
Python Programming Learning Circle
Python Programming Learning Circle
Dec 1, 2021 · Fundamentals

The Fastest Way to Loop in Python: Using Built‑in Functions and Formulas Instead of While/For Loops

This article benchmarks Python while and for loops, shows that for loops are faster due to fewer operations, demonstrates how built‑in functions like sum and direct arithmetic formulas can achieve orders‑of‑magnitude speedups, and concludes that the quickest way to "loop" in Python is to avoid loops altogether.

Algorithmic EfficiencyBenchmarkingPython
0 likes · 8 min read
The Fastest Way to Loop in Python: Using Built‑in Functions and Formulas Instead of While/For Loops
MaGe Linux Operations
MaGe Linux Operations
Nov 26, 2021 · Fundamentals

Unlock Python’s 68 Built‑in Functions: A Complete Guide for Beginners

This article presents all 68 built‑in functions available in Python 3.6.2, categorizes them into twelve groups, and provides clear code examples for each function, helping beginners quickly master essential Python utilities for data types, conversions, mathematics, collections, scope, iteration, and more.

Code ExamplesData TypesPython
0 likes · 17 min read
Unlock Python’s 68 Built‑in Functions: A Complete Guide for Beginners
Python Programming Learning Circle
Python Programming Learning Circle
Oct 25, 2021 · Fundamentals

Python Built-in Functions Overview and Usage

An extensive guide to Python's 68 built-in functions (up to version 3.6.2), organized into categories covering numeric operations, data types, data structures, scope, iterators, and I/O, with code examples illustrating each function's usage and behavior.

Code ExamplesData TypesPython
0 likes · 15 min read
Python Built-in Functions Overview and Usage
Laravel Tech Community
Laravel Tech Community
May 24, 2021 · Backend Development

8 Essential Built‑in PHP Functions Every Developer Should Know

This article presents eight essential built‑in PHP functions—including variable‑argument handling, file searching with glob(), memory and CPU usage monitoring, system constants, unique ID generation, serialization, and string compression—complete with clear code examples to help developers write more efficient PHP code.

Backend DevelopmentCode ExamplesPHP
0 likes · 9 min read
8 Essential Built‑in PHP Functions Every Developer Should Know
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
MaGe Linux Operations
MaGe Linux Operations
Sep 29, 2018 · Fundamentals

Master Python Tuples: Indexing, Slicing, and Operations Explained

This article introduces Python 3 tuples as immutable ordered collections, explains how to create, index, slice, concatenate, and replicate them, and demonstrates built‑in functions such as len, max, and min while comparing tuples with lists and showing conversion techniques.

ImmutablePythonSlicing
0 likes · 9 min read
Master Python Tuples: Indexing, Slicing, and Operations Explained