1
Question Question 1
Which of the following statements will create a tuple:
- tp1=("a", "b")
- tp1[2]=("a", "b")
- tp1=(3)*3
- None of these
tp1=("a", "b")
Reason — A tuple is created by placing all the items (elements) inside parentheses () , separated by commas.