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 で文字列を反復処理しており、各文字をチェックして、等しいかどうかを確認したいと考えてい"ます。どうすればこれを行うことができますか?
"
このような:
for c in theString: if c == '"': print 'Aha!'
次のように、最初の引用符のインデックスを直接取得することもできます。
theString.index('"')