lenght of a set is different from len of a list in python code example
Example 1: length of set python
setnum = {1,2,3,4,5}
# Find the length use len()
print(len(setnum)) #5
Example 2: length of list python
thistuple = ("apple", "banana", "cherry")
print(len(thistuple))