| - Name: Suppose t = (1, 2, 4, 3), which of the following is incorrect?
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
|