0
Can someone please help me, I want to do a math operation with individual values in a list or tuple, how can I go about it
2 Answers
+ 2
Could you be more specific?
Example :
a=(1, 2,3)
b=[4,5,6]
c=a[0]+b[1]
this is c = 1 + 5 = 6
Hopes this helps a bit
+ 1
Thanks Loic, I was later able to find a way around it. Once again thanks