Home »
Python »
Python Tuples MCQs
Will it be considered a tuple?
19. Will it be considered a tuple?
T1= "include help",
print(type(T1))
- Yes
- No
- It will show you the error
Answer: A) Yes
Explanation:
Yes, it will be considered a tuple as a comma is inserted after the first element.