Dec 26, 2025 · 13 min read · Hello, newbies! I am back with a simple guide on Lists and Dictionaries, this time with a new addition - we will be building a Hangman game together! Lists and dictionaries are very powerful structures in Python, and are most useful when we want to s...
Join discussion
Dec 5, 2025 · 2 min read · Mastering Python Lists: Complete Beginner’s Guide with Code & Explanations Python lists create ordered, changeable collections using square brackets [] , holding items like numbers, strings, or nested lists with zero-based indexing . They allow dupl...
Join discussionAug 12, 2025 · 3 min read · Hey there! If you've mastered strings and are ready for your next Python milestone — welcome! Today, we're diving into lists, which are like super-smart containers for your data. Instead of juggling a bunch of separate variables, you can group items ...
Join discussion
Aug 5, 2025 · 8 min read · Introduction In the previous post, we learned all about the basics of Python Lists. As a continuation to that, today we will explore Python List Comprehension. As a beginner learning Python, I was always writing multiple lines of code just to perform...
Join discussion
Feb 17, 2025 · 4 min read · Python is one of the most popular programming languages, known for its simplicity and readability. Among its many powerful features, lists play a crucial role in handling collections of data efficiently. Whether you're a beginner or an experienced de...
Join discussion
Dec 10, 2024 · 2 min read · Introduction In the world of Python programming, lists and tuples are fundamental sequence data types that every developer and DevOps engineer should master. This guide will walk you through the basics of lists and tuples, their differences, and prac...
Join discussionNov 30, 2024 · 3 min read · Introduction In this article, we'll explore the differences between lists, tuples, and sets in Python. A basic understanding of Python syntax is assumed. Let's dive in 🚀. Lists A list is a Python object that stores multiple items of potentially diff...
Join discussion
Oct 16, 2024 · 2 min read · What is Python List Data Structure? Lists are used to store multiple items in a single variable. Lists are one of 4 built-in data types in Python used to store collections of data, the other 3 are Tuple, Set, and Dictionary, all with different qua...
Join discussion
Sep 5, 2024 · 3 min read · Python is a versatile and powerful programming language, renowned for its simplicity and readability. If you're starting your journey with Python, understanding basic data structures like lists and tuples is essential. These fundamental constructs ar...
Join discussion