Home »
Python »
Python Tuples MCQs
What will be the output of the following code? | Tuples Que. 23
23. What will be the output of the following code?
T1=(88,99,77,11,22,33,44)
print([:])
- Entire tuple will be printed
- Tuple will be printed in reverse order
- the Same tuple will be printed
- It will show you the error
Answer: A) Entire tuple will be printed
Explanation:
Entire tuple will be printed.