Code: Select all
test = ("python", "mindphp", "1234")
test2 = ("python", "mindphp")
print(len(test))
print(len(test2))
Code: Select all
test3 = ("python", "mindphp", "tuple")
test4 = (123, 456, 789)
print(max(test3))
print(max(test4))
ศึกษาข้อมูลจาก : https://www.youtube.com/watch?v=9DP8i7x ... M&index=54