to list python code example
Example 1: how to convert a set to a list in python
my_set = set([1,2,3,4])
my_list = list(my_set)
print my_list
>> [1, 2, 3, 4]
Example 2: how to create a list in python
create_list = ["apple", "banana", "cherry"]
print(create_list)
Example 3: python list
my_list = ['foo', 4, 5, 'bar', 0.4]
my_nested_list = ['foobar', ['baz', 'qux'], [0]]
my_list[2]
my_list[-1]
my_list[:2]
my_nested_list[2]
my_nested_list[-1]
my_nested_list[1][1]
my_list.append(x)
my_list.extend(iterable)
my_list.insert(i, x)
my_list.remove(x)
my_list.pop([i])
my_list.clear()
my_list.index(x[, start[, end]])
my_list.count(x)
my_list.reverse()
my_list.sort(key=None, reverse=False)
my_list.copy()
Example 4: python get element from list
my_list = ["pizza", "soda", "muffins"]
my_list[0]
my_list[-1]
my_list[:]
my_list[:-1]
Example 5: python set to list
pokemon_set = set(['Pikachu', 'Bulbasaur', 'Koffing' , 'Spearow', 'Vulpix'])
print(pokemon_set)
pokemon_list = list(pokemon_set)
print(pokemon_list)
Example 6: python list and list
a = ['apple', 'banana', 'pear']
b = ['fridge', 'stove', 'banana']
a & b == ['banana']