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
ਇੱਕ ਡੇਟਾ ਢਾਂਚਾ ਹੈ ਜਿਸ ਵਿੱਚ ਡੁਪਲੀਕੇਟ ਤੱਤ ਸ਼ਾਮਲ ਨਹੀਂ ਹੁੰਦੇ ਹਨ ਅਤੇ ਕੋਈ ਆਰਡਰ ਨਹੀਂ ਹੁੰਦਾ ਹੈ। - ਇੱਕ ਘੋਸ਼ਿਤ ਕਰਨ ਲਈ
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 ਇਹ ਡਾਟਾ ਢਾਂਚਾ ਪ੍ਰੋਗਰਾਮਰਾਂ ਨੂੰ ਵੱਖ-ਵੱਖ ਪ੍ਰੋਗਰਾਮਿੰਗ ਦ੍ਰਿਸ਼ਾਂ ਅਤੇ ਉਦੇਸ਼ਾਂ ਲਈ ਢੁਕਵੇਂ ਢੰਗ ਨਾਲ ਡਾਟਾ ਨੂੰ ਹੇਰਾਫੇਰੀ ਅਤੇ ਪ੍ਰਕਿਰਿਆ ਕਰਨ ਦੀ ਇਜਾਜ਼ਤ ਦਿੰਦਾ ਹੈ ।