Sor using the tuple method when all the values are assigned to get how are the values changed in my list
@madhusudan8401 Жыл бұрын
in tuple function the values can't change...
@anuradhakumari61234 жыл бұрын
NIce explanation
@sdetpavan2 жыл бұрын
Welcome
@mouligodavarthi-yme17012 жыл бұрын
Thank you sir
@sdetpavan2 жыл бұрын
Welcome
@hellyshah62783 жыл бұрын
what is the meaning of tuple?
@saipujitha99913 жыл бұрын
Get is tuple
@saipujitha99913 жыл бұрын
A data structure contained ng multiple arts
@saileinthirababu.s81464 жыл бұрын
Write a function Swap(num, n) in Python, which accepts a list num of numbers and n is the number of elements. The function will interchange every alternate value. E.g If the list num contain: [11, 21, 31, 41, 51, 61] Output, [21, 11, 41, 31, 61, 51] What is the answer for this anybody tell this
@malaydhami8223 жыл бұрын
list = [1, 2, 3, 4, 5, 6, 7] for i in range(len(list)-1): if i%2 == 0 : list[i],list[i+1]=list[i+1],list[i] print(list)
@murgan43072 жыл бұрын
@@malaydhami822 what if item in list are not equal is it work or not tell me