Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 996 Bytes

File metadata and controls

44 lines (31 loc) · 996 Bytes

Data Structures in Python – Practice

This repository contains my practice work from the PW Skills – Data Science with GenAI course.
It includes different Python data structures and how to use them.


⭐ What I Learned

  • Lists
    • Creating lists
    • Adding, removing, updating items
    • Slicing
  • Tuples
    • Characteristics
    • Indexing and slicing
  • Dictionaries
    • Keys and values
    • Adding and updating items
    • Looping through dictionaries
  • Sets
    • Unique values
    • Set operations (union, intersection, difference)
  • Strings
  • Basic problems and assignments

📁 Files in This Repository

  • Google Colab notebook with all code
  • This README file

▶️ How to Use

Open the Colab notebook and run each cell to understand how each data structure works.


🎯 Purpose of This Repo

This repo shows my understanding of Python data structures, which are important for data analysis and real-world coding.