8. How is a tuple containing just one element created ?

A tuple containing just one element can be created in the following ways:
t = 3,
t = (3,)
t = tuple([3])