0
Q:

appending to a list python

# Basic syntax:
your_list.append('element_to_append')

# Example usage:
your_list = ['a', 'b']
your_list.append('c')
print(your_list)
--> ['a', 'b', 'c']

# Note, .append() changes the list directly and doesn’t require an 
#	assignment operation. In fact, the following would produce an error:
your_list = your_list.append('c')
7
L.append()
1
#makes an empty list
List = []

#appends "exaple" to that list
List.append(example)

#removes "example" from that list
List.remove(example)
2
list = ["a"]
list.append("b")

print(list)
["a","b"]
14
stuff = ["apple", "banana"]
stuff.append("carrot")
# Print to see if it worked
print(stuff)
# You can do it with a variable too
whatever = "pineapple"
stuff.append(whatever)
# Print it again
print(stuff)
3

New to Communities?

Join the community