
Eric M. answered 04/19/19
Tutor
4.9
(365)
I can help you understand how to program
a = [1, 2, 3, 4] #define a list
b = a.index(6) # what element in the list has the value of 6? Answer: none
Simple way:
a.remove[6]