Post

Prem Prakash
Prem Prakash@4EverPrem·
@Python_Dv Error. There is no find method for list. If you are looking to find the index of 5, then use print(my_list.index(5)) If simply checking it 5 is in my_list, then use print(6 in my_list)
English
0
0
0
211
Thomas
Thomas@xthomasTweets·
@Python_Dv it's Error. List object has no attribute 'find', you may use index 😕
English
0
0
0
17
Rakesh Das
Rakesh Das@RakeshDas_18·
@Python_Dv C) Error will be displayed. Because the list object does not have a find() method. To find the index of an element in a list, you should use the index() method.
English
0
0
0
109
Paylaş