1.

Write a python program to remove an element 3 from the following tuple T=(1,2,3,4,5)​

Answer» TION:T=(1,2,3,4,5)T.remove(3)PRINT(T)


Discussion

No Comment Found