2023-06-25 Python - str.find(sub[, start[, end]]):文字位置 Python3 文字列メソッド 概要 実行結果 表示イメージ 概要str.find(sub[, start[, end]])sub:検査文字 start,end:スライスと同一 文字位置 文字列が見つからない時「-1」 組込み型 文字列メソッド 実行結果 eng= 'abcdefg' print(eng.find('c')) print(eng.find('z')) print(eng.find('c',5,7)) 表示イメージ 2 -1 -1