tuple in Python

A tuple in Python is similar to a list. The difference between the two is that we cannot change the elements of a tuple once it is assigned whereas we can change the elements of a list.
```
t = (1, "Hello", 3.4)
print(t)
```