Python Tuple คือ ตัวแปรชนิดหนึ่งของภาษา Python รอบรับการจัดเก็บข้อมูลหลายข้อมูลใน 1 ตัวแปร เช่นเดียวกับ List, Set หรือ Dictionary โดย Tuple จะเหมาะสำหรับใช้เก็บข้อมูลที่ไม่ต้องการเปลี่ยนแปลง สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง การสร้างตัวแปร Tuple
t = ("apple", "orange", "banana", "berry")
print( t )
ตัวอย่าง การเข้าถึงข้อมูลในตัวแปร Tuple
t = ("apple", "orange", "banana", "berry")
print( t )
for x in range( len( t ) ):
print( t[x] )
ผลลัพธ์
('apple', 'orange', 'banana', 'berry')
apple
orange
banana
berry