4
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?
4
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?
Browser other questions tagged python python-3.x list
You are not signed in. Login or sign up in order to post.