Python series 4

📰 Medium · Python

Understanding Lists, Tuples, and Sets Continue reading on Medium »

Published 17 Apr 2026

Full Article

Title: Python series 4

URL Source: https://medium.com/@Commoness/python-series-4-1618f9069bc2?source=rss------python-5

Published Time: 2026-04-17T18:11:01Z

Markdown Content:
# Python series 4. Understanding Lists, Tuples, and Sets | by The Commoness | Apr, 2026 | Medium

[Sitemap](https://medium.com/sitemap/sitemap.xml)

[Open in app](https://play.google.com/store/apps/details?id=com.medium.reader&referrer=utm_source%3DmobileNavBar&source=post_page---top_nav_layout_nav-----------------------------------------)

Sign up

[Sign in](https://medium.com/m/signin?operation=login&redirect=https%3A%2F%2Fmedium.com%2F%40Commoness%2Fpython-series-4-1618f9069bc2&source=post_page---top_nav_layout_nav-----------------------global_nav------------------)

[](https://medium.com/?source=post_page---top_nav_layout_nav-----------------------------------------)

Get app

[Write](https://medium.com/m/signin?operation=register&redirect=https%3A%2F%2Fmedium.com%2Fnew-story&source=---top_nav_layout_nav-----------------------new_post_topnav------------------)

[Search](https://medium.com/search?source=post_page---top_nav_layout_nav-----------------------------------------)

Sign up

[Sign in](https://medium.com/m/signin?operation=login&redirect=https%3A%2F%2Fmedium.com%2F%40Commoness%2Fpython-series-4-1618f9069bc2&source=post_page---top_nav_layout_nav-----------------------global_nav------------------)

![Image 1: The Commoness](https://miro.medium.com/v2/resize:fill:64:64/1*dmbNkD5D-u45r44go_cf0g.png)

[Mastodon](https://me.dm/@Commoness)

# Python series 4

[![Image 2: The Commoness](https://miro.medium.com/v2/resize:fill:64:64/1*dmbNkD5D-u45r44go_cf0g.png)](https://medium.com/@Commoness?source=post_page---byline--1618f9069bc2---------------------------------------)

[The Commoness](https://medium.com/@Commoness?source=post_page---byline--1618f9069bc2---------------------------------------)

2 min read

·

Just now

[](https://medium.com/m/signin?actionUrl=https%3A%2F%2Fmedium.com%2F_%2Fvote%2Fp%2F1618f9069bc2&operation=register&redirect=https%3A%2F%2Fmedium.com%2F%40Commoness%2Fpython-series-4-1618f9069bc2&user=The+Commoness&userId=07b247769d98&source=---header_actions--1618f9069bc2---------------------clap_footer------------------)

--

[](https://medium.com/m/signin?actionUrl=https%3A%2F%2Fmedium.com%2F_%2Fbookmark%2Fp%2F1618f9069bc2&operation=register&redirect=https%3A%2F%2Fmedium.com%2F%40Commoness%2Fpython-series-4-1618f9069bc2&source=---header_actions--1618f9069bc2---------------------bookmark_footer------------------)

[Listen](https://medium.com/m/signin?actionUrl=https%3A%2F%2Fmedium.com%2Fplans%3Fdimension%3Dpost_audio_button%26postId%3D1618f9069bc2&operation=register&redirect=https%3A%2F%2Fmedium.com%2F%40Commoness%2Fpython-series-4-1618f9069bc2&source=---header_actions--1618f9069bc2---------------------post_audio_button------------------)

Share

## **Understanding Lists, Tuples, and Sets**

As I continue learning Python, one of the most useful topics I explored is **Python collections** — especially **Lists, Tuples, and Sets**. These help us store multiple values in a single variable and make our code more organized and efficient.

In real life, we often deal with groups of things: shopping items, student names, marks, attendance, fixed menu items, unique visitors, and much more. Python gives us different ways to handle such data depending on the situation.

Let us understand each one in a simple way.

## 1. LISTS (Think as it is You’re weekly groccery Shopping Bag )

## What is a List?

A **list** is a collection of items that:

* Are **ordered**
* Can be **changed (mutable)**
* Can store **different data types**

Here’s your **next Python blog (continuation style)** based on your notes — clean, simple, beginner-friendly, and with real-life examples + practice Q&A exactly like your previous style

## Real-Time Example:

Imagine you go to a shop and write a list:

Milk, Sugar, Bread
You can:

* Add items
* Remove items
*
Read full article → ← Back to Reads