ValueError: item is not in list

后端 未结 2 898
终归单人心
终归单人心 2021-01-29 09:04

I am making this simple code:

MyList=[]
valueA=1
valueB=2
valueC=3
MyList.append (valueA)
MyList.append (valueB)
MyList.append (valueC)
print (MyList)
print ([My         


        
2条回答
  •  清歌不尽
    2021-01-29 09:19

    Your mistake was that you put my_list into another anonymous list at the last line.It should be like this:

    MyList=[]
    valueA=1
    valueB=2
    valueC=3
    MyList.append (valueA)
    MyList.append (valueB)
    MyList.append (valueC)
    print (MyList)
    print (MyList.index(valueB))
    

    Output:

    [1, 2, 3]
    1
    

提交回复
热议问题