Choice Card
Suppose t = (1, 2, 4, 3), which of the following is incorrect?
Belongs to subject
Python
Let's learn now
Talk
History
Edit
Suppose t = (1, 2, 4, 3), which of the following is incorrect?
print(max(t))
Am asking for an Incorrect choice
t[3] = 45
Good Job, Tuple is immutable
print(len(t))
Am asking for an Incorrect choice
print(t[3])
Am asking for an Incorrect choice