Python Tietorakenteet: luettelot, rivit, joukot ja sanakirjat

List

  • A List on dynaaminen matriisi Python, johon voit tallentaa useita erilaisia ​​arvoja, ja elementtejä voidaan muuttaa alustuksen jälkeen.
  • Jos haluat ilmoittaa a:n List, käytä hakasulkuja [].

Esimerkki:

# 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 on muuttumaton tietorakenne kohteessa Python, jota käytetään usein suojaamaan tietoja muuttamiselta alustuksen jälkeen.
  • Jos haluat ilmoittaa a:n Tuple, käytä sulkeita ().

Esimerkki:

# 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 on tietorakenne, joka ei sisällä päällekkäisiä elementtejä ja jolla ei ole järjestystä.
  • Voit ilmoittaa Set aaltosulkeilla {} tai set() funktiolla.

Esimerkki:

# 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 on järjestämätön tietorakenne, joka tallentaa tiedot avain-arvo-pareihin.
  • Voit ilmoittaa Dictionary aaltosulkeilla {} ja erottaa jokainen avainarvopari kaksoispisteellä :.

Esimerkki :

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

Nämä tietorakenteet antavat ohjelmoijille mahdollisuuden käsitellä ja käsitellä dataa joustavasti Python eri ohjelmointiskenaarioihin ja -tarkoituksiin.