In Python, Tuple can be formed by placing a sequence of elements side by side separated by comma(,) inside parentheses. The difference between a `tuple` and `list` is that tuples are immutable(they cannot be altered or modified) whereas list can be changed and altered.