8. How is a tuple containing just one element created ? / sa 11 cs chapter 12 / By PythonCSIP CS IP A tuple containing just one element can be created in the following ways: t = 3, t = (3,) t = tuple([3])