Answers for "defining list in python"

6

list in python

myfavouritefoods = ["Pizza", "burgers" , "chocolate"]
print(myfavouritefoods[1])
#or
print(myfavouritefoods)
Posted by: Guest on January-26-2021
12

list in python

thislist = ["apple", "banana", "cherry"]
print(thislist[1])
Posted by: Guest on January-07-2020
2

list in python

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

list in python

# Python program to demonstrate 
# Removal of elements in a List
  
# Creating a List
List = [1, 2, 3, 4, 5, 6, 
        7, 8, 9, 10, 11, 12]
print("Intial List: ")
print(List)
  
# Removing elements from List
# using Remove() method
List.remove(5)
List.remove(6)
print("nList after Removal of two elements: ")
print(List)
  
# Removing elements from List
# using iterator method
for i in range(1, 5):
    List.remove(i)
print("nList after Removing a range of elements: ")
print(List)
Posted by: Guest on May-25-2021
0

list in python

hello kcndkcd
Posted by: Guest on August-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language