I have a tuple
tup = (1,2,3,())
I want to put a value 4 in the last position of tup
i.e. i want tup to be (1,2,3,4)
how can i do that
tup = (1,2,3,())
I want to put a value 4 in the last position of tup
i.e. i want tup to be (1,2,3,4)
how can i do that
Comment