Computer Science
Consider the following code and find out the error:
t1 = (10, 20, 30, 40)
X, Y, Z = t1
Related Questions
Consider the following code and find out the error:
tup1 = ('a', 'b', 'c') tup1 = tup1 + dConsider the following code and find out the error:
tup1 = ("Riya", ) * '4'Consider the following code and find out the error:
tup1=('A', 'school', 10.5, 70) print max(tup1)Consider the following code and find out the error:
t = (10, 20, 30, 40) t[1] = 'o'