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, ఇది ప్రారంభించిన తర్వాత డేటాను మార్చకుండా రక్షించడానికి తరచుగా ఉపయోగించబడుతుంది. - 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
అనేది క్రమం లేని డేటా నిర్మాణం, ఇది సమాచారాన్ని కీ-విలువ జతలలో నిల్వ చేస్తుంది. - 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.