Python Struchtúir Sonraí: Liostaí, Tuples, Seiteanna agus Foclóirí

List

  • List Is eagar dinimiciúil é A i Python, a ligeann duit illuachanna éagsúla a stóráil, agus is féidir gnéithe a athrú tar éis tosaigh.
  • Chun a dhearbhú List, úsáid lúibíní cearnacha [].

Sampla:

# 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

  • Tuple Is struchtúr sonraí domhalartaithe é A i Python, a úsáidtear go minic chun sonraí a chosaint ó bheith athraithe tar éis tosaigh.
  • Chun a dhearbhú Tuple, bain úsáid as lúibíní ().

Sampla:

# 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

  • Is struchtúr sonraí é A Set nach bhfuil eilimintí dúblacha ann agus nach bhfuil aon ord ann.
  • Chun a dhearbhú Set, úsáid braces chatach {} nó an set() fheidhm.

Sampla:

# 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

  • Is struchtúr sonraí neamhordaithe é A Dictionary a stórálann faisnéis i mbeirteanna eochairluacha.
  • Chun a dhearbhú a Dictionary, úsáid braces chatach {} agus scaradh gach péire eochair-luach le idirstad :.

Sampla :

# 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'}  

Ligeann na struchtúir sonraí seo do ríomhchláraitheoirí sonraí a ionramháil agus a phróiseáil go solúbtha i Python, atá oiriúnach do chásanna agus cuspóirí cláir éagsúla.