~2 min read · Updated Jul 18, 2025

۱. تعریف و سینتکس


نوعنحو تعریفساختار
لیست[1, "apple", True]ترتیب‌دار و قابل‌تغییر
تاپل(1, "apple", True)ترتیب‌دار و غیرقابل‌تغییر
دیکشنری{"name": "Ali", "age": 30}نگاشت کلید–مقدار

۲. مقایسه عملکردی


ویژگیلیستتاپلدیکشنری
قابلیت تغییر (Mutability)✅ قابل‌تغییر❌ غیرقابل‌تغییر✅ قابل‌تغییر
نوع دسترسیبر اساس اندیس (0،1،...)بر اساس اندیسبر اساس کلید منحصربه‌فرد
حفظ ترتیب✅ حفظ می‌شود✅ حفظ می‌شود✅ از نسخه ۳.۷ به بعد
مقادیر تکراری✅ مجاز✅ مجازکلید: ❌ / مقدار: ✅ مجاز
کاربردهامجموعه‌های دینامیکداده‌های ثابت و گروهینگاشت و جست‌وجوی سریع

۳. نمونه‌هایی از دسترسی



# لیست
my_list = ["apple", "banana", "cherry"]
print(my_list[0])      # خروجی: 'apple'

# تاپل
my_tuple = ("apple", "banana", "cherry")
print(my_tuple[1])     # خروجی: 'banana'

# دیکشنری
my_dict = {"fruit1": "apple", "fruit2": "banana"}
print(my_dict["fruit2"])  # خروجی: 'banana'

۴. چه زمانی از کدام نوع استفاده کنیم؟


  • لیست‌ها: زمانی که مجموعه‌ای منعطف دارید که نیاز به افزودن یا تغییر دارد.
  • تاپل‌ها: برای گروه‌بندی داده‌های ثابت مانند مختصات یا ثابت‌های برنامه.
  • دیکشنری‌ها: زمانی که به نگاشت سریع بین کلید و مقدار نیاز دارید — مثل مشخصات کاربر یا تنظیمات برنامه.

نتیجه‌گیری


شناخت تفاوت بین لیست، تاپل و دیکشنری منجر به نوشتن کدی پاک‌تر، سریع‌تر و قابل نگهداری‌تر در پایتون می‌شود. استفادهٔ صحیح از هر ساختار داده باعث بهره‌وری بهتر در پروژه‌های واقعی خواهد شد.


Written & researched by Dr. Shahin Siami

Related Articles

Complete Guide to Python Decorators – Enhancing Function Behavior with Reusable Logic

Decorators in Python are a powerful tool for modifying or extending the behavior of functions and classes without changing their original code. They allow developers to implement reusable logic such as logging, authentication, caching, or timing in a clean and maintainable way. This article explores the structure, definition, common use cases, and practical examples of decorators in Python.

Continue

Comprehensive Guide to Python Classes – Object-Oriented Design, Structure, Inheritance, and Practical Use

Classes in Python are the foundation of object-oriented programming, allowing developers to define complex data structures, encapsulate logic, and create scalable, maintainable systems. This article walks through the fundamentals of defining classes, constructors, methods, inheritance, encapsulation, and real-world applications in Python projects.

Continue

Several example codes

understand the Python programming language

Continue

Complete Guide to Getting Text Input from Users in Python

In Python, accepting input from users is one of the simplest yet most powerful features for interactive programming. This article explores the input() function in depth, explains how to cast types, validate user data, and use input within loops and conditions. Real-life examples help clarify each concept, making this guide perfect for beginners and intermediate learners.

Continue

Comprehensive Guide to Functions in Python: Structure, Types, and Use Cases

Functions in Python are essential building blocks for writing modular, reusable, and maintainable code. This article introduces function definitions, distinguishes between built-in and user-defined functions, explores parameters and return values, and presents advanced topics such as recursion and lambda expressions. Whether you're a beginner or brushing up for interviews, this guide offers a clear and accessible foundation.

Continue

Loops, Iterators, and Repetition Control in Python

Loops, Iterators, and Repetition Control in Python

Continue