Chapter 52

  5.4.7 要素の探索

小栁 斉
小栁 斉
2024.09.22に更新
サンプルコード:sample_348.py
x = ["a", "b", "c", "d", "e", "f"]
print(x.index("c"))
実行結果
2
サンプルコード:sample_349.py
x = ["a", "b", "c", "d", "c", "c"]
print(x.index("c"))
実行結果
2
サンプルコード:sample_350.py
x = [1, 2, 3, 4, 5]
print(x.index(3))
実行結果
2
サンプルコード:sample_351.py
x = ["a", "b", "c"]
print(x.index("z"))
実行結果
ValueError: 'z' is not in list