ある要素が初めて現れるのは何番目か?[Python]

7月 27, 2020

num_list = [0,0,1,0,0,0]

num_list.index(1)

>> 2

num_list.index(0)

>> 0

num_list.index(2)

>> Traceback (most recent call last):
>> File "<ipython-input-8-4fca9221ee97>", line 1, in <module>
>> tmp.index(2)
>> ValueError: 2 is not in list

この他にもPythonicなコーディング手法を知りたい時には、以下の書籍がおすすめだ。

PythonPython

Posted by vastee