Answers for "to list python"

86

python list

#Creating lists
my_list = ['foo', 4, 5, 'bar', 0.4]
my_nested_list = ['foobar', ['baz', 'qux'], [0]]

#Accessing list values
my_list[2] # 5
my_list[-1] # 0.4
my_list[:2] # ['foo', 4, 5]
my_nested_list[2] # ['baz', 'quz']
my_nested_list[-1] # [0]
my_nested_list[1][1] # 'qux'

#Modifying lists
my_list.append(x) # append x to end of list
my_list.extend(iterable) # append all elements of iterable to list
my_list.insert(i, x) # insert x at index i
my_list.remove(x) # remove first occurance of x from list
my_list.pop([i]) # pop element at index i (defaults to end of list)
my_list.clear() # delete all elements from the list
my_list.index(x[, start[, end]]) # return index of element x
my_list.count(x) # return number of occurances of x in list
my_list.reverse() # reverse elements of list in-place (no return)
my_list.sort(key=None, reverse=False) # sort list in-place
my_list.copy() # return a shallow copy of the list
Posted by: Guest on June-04-2020
6

how to create a list in python

#creating a list
create_list = ["apple", "banana", "cherry"]
print(create_list)
Posted by: Guest on September-30-2020
11

python get element from list

my_list = ["pizza", "soda", "muffins"]

my_list[0] # outputs "pizza"
my_list[-1] # outputs the last element of the list which is "muffins"
my_list[:] # outputs the whole list
my_list[:-1] # outputs the whole list except its last element

# you can also access a string's letter like this
Posted by: Guest on June-07-2020
7

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]
Posted by: Guest on May-19-2020
2

python list and list

a = ['apple', 'banana', 'pear']
b = ['fridge', 'stove', 'banana']

a & b == ['banana'] #True
Posted by: Guest on November-03-2020
2

list in python

myList = ["Test", 419]
myList.append(10)
myList.append("my code")
print(myList)
Posted by: Guest on October-06-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language