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 เหมาะสำหรับสถานการณ์และวัตถุประสงค์ในการเขียนโปรแกรมต่างๆ