Computer Science, asked by parneetsimpy, 6 months ago

Suppose a tuple Tup is declared as Tup = (12, 15, 63, 80),
which of the following is incorrect?
a) print(Tup[1])
b) Tup[2] = 90
c) print(min(Tup))
d) print(len(Tup))​

Answers

Answered by rachleah20
4

Answer:

b] tup[2]=90

Explanation:

Similar questions