I have the following code:
a = list()
b = list()
c = list()
a = (1,2,3)
b = (2,4,6)
c = a + b[1]
print(c)
How do I add an element from a list to another list?
I have the following code:
a = list()
b = list()
c = list()
a = (1,2,3)
b = (2,4,6)
c = a + b[1]
print(c)
How do I add an element from a list to another list?