declaring a list in python code example

Example 1: how to make a python list

listName = [1,2,3,4]

Example 2: 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

Example 3: 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])

Example 4: how to create a list in python

#creating a list
create_list = ["apple", "banana", "cherry"]
print(create_list)

Example 5: how to make lists in python

listName = [whatever,whatever,etc.]

Example 6: python list

# example of list in python

myList = [9, 'hello', 2, 'python']

print(myList[0]) # output --> 9
print(myList[-3]) # output --> hello
print(myList[:3]) # output --> [9, 'hello', 2]
print(myList) # output --> [9, 'hello', 2, 'python']