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 என்பது வரிசைப்படுத்தப்படாத தரவுக் கட்டமைப்பாகும், இது முக்கிய மதிப்பு ஜோடிகளில் தகவலைச் சேமிக்கிறது.
  • ஒரு அறிவிக்க 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 இந்த தரவு கட்டமைப்புகள் புரோகிராமர்கள் பல்வேறு நிரலாக்க காட்சிகள் மற்றும் நோக்கங்களுக்கு ஏற்ற வகையில், நெகிழ்வான முறையில் தரவை கையாளவும் செயலாக்கவும் அனுமதிக்கின்றன .