เมื่อต้องการเปรียบเทียบทูเพิล สามารถใช้ตัวดำเนินการ '<', '>' และ '==' ได้
คืนค่า True หรือ False ขึ้นอยู่กับว่า tuples มีค่าเท่ากันหรือไม่ น้อยกว่าหรือมากกว่ากัน
ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -
ตัวอย่าง
my_tuple_1 = (87, 90, 31, 85) my_tuple_2 = (34, 56, 12, 5) print("The first tuple is :") print(my_tuple_1) print("The second tuple is :") print(my_tuple_2) print("Comparing the two tuples") print(my_tuple_1< my_tuple_2) print(my_tuple_1==my_tuple_2) print(my_tuple_2 > my_tuple_1)
ผลลัพธ์
The first tuple is : (87, 90, 31, 85) The second tuple is : (34, 56, 12, 5) Comparing the two tuples False False False
คำอธิบาย
- มีการกำหนดทูเพิลสองรายการ และแสดงบนคอนโซล
- เปรียบเทียบโดยใช้ตัวดำเนินการ '<', '>' และ '=='
- แสดงเป็นเอาต์พุตบนคอนโซล