Tuple: créer du tuple

x = tuple([3,4,5])
y = 3,4,5

print(x)
# (3, 4, 5)

print(y)
# (3, 4, 5)

print(x == y)
# True
Sore Sloth