Python code snippet – How to add multiple items in list ?
my_list = ['a'] # You can use list.append(value) to append a single value: my_list.append('b') # my_list should look like ['a','b'] # and list.extend(iterable) to append multiple values. my_list.extend(('b','c')) # my_list should look like ['a','b','c']