predict the error in the following code and rewrite the correct code .tup=(100,20).
tup1=(tup+30)
print(tup1)..
(it is python programming..)
Answers
Answered by
1
Explanation:
tup1 = tup+(30,)
print(tup1)
Similar questions