Tagged articles
32 articles
Page 1 of 1
Lisa Notes
Lisa Notes
Feb 23, 2026 · Fundamentals

How to Convert Any Python Data Type to Boolean

This tutorial explains Python’s bool() function, lists the values that evaluate to False, demonstrates converting numbers, strings, collections, and None to booleans, and shows how implicit conversion works in conditional statements, with concrete code examples for each case.

ListPythonbool
0 likes · 4 min read
How to Convert Any Python Data Type to Boolean
JavaScript
JavaScript
Sep 19, 2025 · Frontend Development

Unlocking ES2025: How New Syntax Transforms JavaScript Development

This article explores the groundbreaking ES2025 JavaScript features—including pattern matching, enhanced array destructuring, the pipeline operator, native Record & Tuple types, Decimal numbers, improved error handling, and Temporal API integration—showing how they simplify code, boost performance, and move the language toward functional and type‑safe programming.

DecimalES2025JavaScript
0 likes · 7 min read
Unlocking ES2025: How New Syntax Transforms JavaScript Development
Code Mala Tang
Code Mala Tang
May 3, 2025 · Fundamentals

When to Use Python Lists vs Tuples: A Practical Guide

This article explains the differences between Python lists and tuples, covering their definitions, mutable vs immutable nature, syntax, performance, common pitfalls, and best-use scenarios such as dynamic collections, fixed data, and dictionary keys, with clear code examples.

ImmutableListMutable
0 likes · 9 min read
When to Use Python Lists vs Tuples: A Practical Guide
php Courses
php Courses
Mar 25, 2025 · Fundamentals

Common Python Data Structures: List, Tuple, Set, and Dictionary

This article introduces Python's four fundamental data structures—list, tuple, set, and dictionary—explaining their characteristics, creation syntax, and typical operations to help readers choose the appropriate structure for different programming scenarios.

Data StructuresListSet
0 likes · 8 min read
Common Python Data Structures: List, Tuple, Set, and Dictionary
Test Development Learning Exchange
Test Development Learning Exchange
Feb 26, 2025 · Fundamentals

Understanding Python Tuples: Definition, Features, and Practical Examples

This article introduces Python tuples, explaining their immutable ordered nature, core characteristics, and provides eleven practical code examples ranging from basic definition and indexing to unpacking, concatenation, using tuples as dictionary keys, and converting them to lists, illustrating common use cases and best practices.

Data StructureImmutablecoding
0 likes · 8 min read
Understanding Python Tuples: Definition, Features, and Practical Examples
Python Programming Learning Circle
Python Programming Learning Circle
Jul 27, 2022 · Fundamentals

Understanding Shallow and Deep Copy in Python

This article explains how Python variables reference objects in memory, distinguishes between shallow and deep copying, demonstrates three common copying techniques (slicing, factory functions, and the copy method) with lists and tuples, and shows how to use the copy module for deep copies.

ListPythoncopy module
0 likes · 6 min read
Understanding Shallow and Deep Copy in Python
Python Programming Learning Circle
Python Programming Learning Circle
May 4, 2022 · Fundamentals

Common Python Interview Questions and Answers

This article provides concise explanations of ten fundamental Python topics, covering differences between lists and tuples, arrays and lists, append versus extend, equality operators, shallow and deep copying, loop control statements, variable scopes, range versus xrange, decorators, and the concepts of iterators and generators.

ArrayDecoratorIterator
0 likes · 7 min read
Common Python Interview Questions and Answers
Python Programming Learning Circle
Python Programming Learning Circle
Apr 17, 2021 · Fundamentals

Python Comprehensions: List, Tuple, Dictionary, and Set

This article explains Python's comprehension syntax for lists, tuples, dictionaries, and sets, detailing their structures, execution order, and practical examples—including filtering, nested loops, and conditional logic—while showing how to convert generator objects and highlighting common use cases.

ListPythonSet
0 likes · 11 min read
Python Comprehensions: List, Tuple, Dictionary, and Set
Practical DevOps Architecture
Practical DevOps Architecture
Mar 9, 2021 · Fundamentals

Python Data Types: Tuple and String

This article introduces Python's immutable tuple and string data types, explains their characteristics, demonstrates how to convert between tuples, lists, and strings, and provides practical code examples for common operations such as indexing, slicing, counting, and formatted printing.

Data Typesfundamentalstuple
0 likes · 5 min read
Python Data Types: Tuple and String
Python Crawling & Data Mining
Python Crawling & Data Mining
May 13, 2020 · Fundamentals

Master Python Lists, Tuples, and Dictionaries: Essential Guide with Code Examples

This article introduces Python’s core data structures—lists, tuples, and dictionaries—explaining their definitions, indexing, slicing, iteration, modification, and common operations, and provides clear code examples for creating, accessing, updating, and deleting elements, helping beginners deepen their programming fundamentals.

Data StructuresListPython
0 likes · 13 min read
Master Python Lists, Tuples, and Dictionaries: Essential Guide with Code Examples
FunTester
FunTester
Mar 9, 2020 · Fundamentals

Mastering Groovy Tuples: Immutable Collections and Practical Examples

This article explains Groovy's immutable Tuple classes, shows how to create and use Tuple, Tuple2, Tuple3, and demonstrates their read‑only behavior with practical code examples, highlighting why they are ideal for returning multiple values from methods.

BackendGroovyImmutable
0 likes · 4 min read
Mastering Groovy Tuples: Immutable Collections and Practical Examples
ITPUB
ITPUB
Dec 11, 2019 · Fundamentals

Why Python Tuples Matter: Master Immutable Sequences with Practical Examples

This tutorial explains Python tuples—immutable sequences—covering their characteristics, creation, common operations, and why they are essential for dictionary keys and function returns, while providing clear code examples and guidance for effective use.

Immutable Sequencetuple
0 likes · 5 min read
Why Python Tuples Matter: Master Immutable Sequences with Practical Examples
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
MaGe Linux Operations
MaGe Linux Operations
Apr 10, 2018 · Fundamentals

Unlock Python Tuples and Dictionaries: Essential Operations and Tips

This tutorial explains Python tuples and dictionaries, covering their definitions, creation methods, immutable and mutable characteristics, common operations, built‑in functions, and practical code examples that demonstrate indexing, slicing, unpacking, method usage, such as adding, updating, copying, and iterating.

Pythondictionarytuple
0 likes · 10 min read
Unlock Python Tuples and Dictionaries: Essential Operations and Tips