Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はPythonが初めてで、Pythonで何かのインデックス位置を識別する方法があるかどうか疑問に思っていますか?
たとえば、アルファベット az で構成される文字列があり、ユーザーに文字を入力するように依頼した場合、文字 "f" がアルファベット文字列でインデックス 5 を持っていることをプログラムに識別させる方法はありますか?
こんな感じですか?
alpha = "abcdefghijkl..." alpha.index("f")
>>> 'asdfsadg'.index('f') 3