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 આ ડેટા સ્ટ્રક્ચર્સ પ્રોગ્રામરોને વિવિધ પ્રોગ્રામિંગ દૃશ્યો અને હેતુઓ માટે યોગ્ય, લવચીક રીતે ડેટાની હેરફેર અને પ્રક્રિયા કરવાની મંજૂરી આપે છે .