View Categories
python logo

Learn Python

14 Docs
Last Updated: September 17, 2026

Lists in Python

A complete guide to lists in Python, covering indexing, append(), insert(), remove(), pop(), sort(), and looping through lists, with examples, FAQs, and practice questions for beginners.

Last Updated: September 17, 2026

Tuples in Python

A complete guide to tuples in Python, covering indexing, immutability, single-item tuples, and converting between tuples and lists, with examples, FAQs, and practice questions for beginners.

Last Updated: September 17, 2026

Dictionaries in Python

A complete guide to dictionaries in Python, covering key-value pairs, get(), adding/updating/removing keys, and looping with items(), with examples, FAQs, and practice questions for beginners.

Last Updated: September 20, 2026

Sets in Python

A complete guide to sets in Python, covering duplicate removal, add(), remove(), discard(), and set operations like union, intersection, and difference, with examples, FAQs, and practice questions for beginners.

Scroll to Top