5
Suppose t = (1, 2, 4, 3), which of the following is incorrect?
a) print(t[3])
b) t[3] = 45
c) print(max(t))
d) print(len(t))
Answers
Answered by
1
b) t[3] = 45 is incorrect
Answered by
1
Answer:
option (b) is incorrect
Similar questions