put variabl in a list python code example
Example 1: python add to list with index
list.insert(index, element)
Example 2: python add item to list
# to add an item to a list
list.append(item)
# To extend an list with a new list
list1.extend(list2)