Python ڈیٹا سٹرکچرز: فہرستیں، ٹیپلز، سیٹ اور لغت

List

  • A List میں ایک متحرک صف ہے Python ، جو آپ کو متعدد مختلف اقدار کو ذخیرہ کرنے کی اجازت دیتی ہے، اور عناصر کو ابتدا کے بعد تبدیل کیا جا سکتا ہے۔
  • a کا اعلان کرنے کے لیے List مربع بریکٹ استعمال کریں [] ۔

مثال:

# Declare a List containing integers  
numbers = [1, 2, 3, 4, 5]  
  
# Access and print elements in the List  
print(numbers[0])  # Output: 1  
print(numbers[2])  # Output: 3  
  
# Modify the value of an element in the List  
numbers[1] = 10  
print(numbers)  # Output: [1, 10, 3, 4, 5]  

 

Tuple

  • A Tuple میں ایک ناقابل تغیر ڈیٹا ڈھانچہ ہے Python ، جو اکثر ڈیٹا کو ابتدا کے بعد تبدیل ہونے سے بچانے کے لیے استعمال ہوتا ہے۔
  • a کا اعلان کرنے کے لیے Tuple قوسین کا استعمال کریں () ۔

مثال:

# Declare a Tuple containing information of a student  
student_info =('John', 25, 'Male', 'New York')  
  
# Access and print elements in the Tuple  
print(student_info[0])  # Output: John  
print(student_info[2])  # Output: Male  

 

Set

  • A Set ایک ڈیٹا ڈھانچہ ہے جس میں ڈپلیکیٹ عناصر شامل نہیں ہیں اور اس کا کوئی حکم نہیں ہے۔
  • a کا اعلان کرنے کے لیے Set ، گھوبگھرالی منحنی خطوط وحدانی {} یا set() فنکشن کا استعمال کریں۔

مثال:

# Declare a Set containing colors  
colors = {'red', 'green', 'blue', 'red', 'yellow'}  
  
# Print the Set to check duplicate elements are removed  
print(colors)  # Output: {'red', 'green', 'blue', 'yellow'}  

 

Dictionary

  • A Dictionary ایک غیر ترتیب شدہ ڈیٹا ڈھانچہ ہے جو معلومات کو کلیدی قدر کے جوڑوں میں محفوظ کرتا ہے۔
  • a کا اعلان کرنے کے لیے Dictionary ، گھوبگھرالی منحنی خطوط وحدانی کا استعمال کریں {} اور کلیدی قدر کے ہر جوڑے کو بڑی آنت سے الگ کریں : ۔

مثال :

# Declare a Dictionary containing information of a person  
person = {'name': 'John', 'age': 30, 'city': 'New York'}  
  
# Access and print values from the Dictionary  
print(person['name'])  # Output: John  
print(person['age'])   # Output: 30  
  
# Modify the value of a key in the Dictionary  
person['city'] = 'Los Angeles'  
print(person)  # Output: {'name': 'John', 'age': 30, 'city': 'Los Angeles'}  

Python یہ ڈیٹا ڈھانچہ پروگرامرز کو مختلف پروگرامنگ منظرناموں اور مقاصد کے لیے موزوں، لچکدار طریقے سے ڈیٹا میں ہیرا پھیری اور اس پر کارروائی کرنے کی اجازت دیتا ہے ۔