List
- A
List
मा एक गतिशील एरे हो Python, जसले तपाईंलाई धेरै फरक मानहरू भण्डारण गर्न अनुमति दिन्छ, र प्रारम्भिकरण पछि तत्वहरू परिवर्तन गर्न सकिन्छ। - घोषणा गर्न
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, जुन प्रायः प्रारम्भिकरण पछि परिवर्तन हुनबाट डेटा जोगाउन प्रयोग गरिन्छ। - घोषणा गर्न
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
एक डेटा संरचना हो जसमा नक्कल तत्वहरू समावेश हुँदैन र कुनै अर्डर हुँदैन। - घोषणा गर्न
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 यी डेटा संरचनाहरूले प्रोग्रामरहरूलाई विभिन्न प्रोग्रामिङ परिदृश्यहरू र उद्देश्यहरूका लागि उपयुक्त, लचिलो रूपमा डाटा हेरफेर गर्न र प्रशोधन गर्न अनुमति दिन्छ ।