Answers for "how to generate list in python"

32

how to make a python list

listName = [1,2,3,4]
Posted by: Guest on November-09-2019
9

how to create a list in python

# Create a list
new_list = []

# Add items to the list
item1 = "string1"
item2 = "string2"

new_list.append(item1)
new_list.append(item2)

# Access list items
print(new_list[0])  
print(new_list[1])
Posted by: Guest on June-03-2020
4

creating a list in python

myList = [value,value,value] #note that you can use any amount of value
#you don not have to use value
Posted by: Guest on November-04-2020
2

how to make a list in python

list1 = ['physics', 'chemistry', 1997, 2000];
list2 = [1, 2, 3, 4, 5 ];
list3 = ["a", "b", "c", "d"];
Posted by: Guest on February-19-2021
1

list inside a list in python

# it appends a list into a list
list1 = [1,2,3,4,5]
list1.append([6,7])
# ouput = [1, 2, 3, 4, 5, [6, 7]]
Posted by: Guest on May-14-2020
0

how to generate list in python

print(listName)
Posted by: Guest on March-12-2021

Code answers related to "how to generate list in python"

Python Answers by Framework

Browse Popular Code Answers by Language