概要
Pythonで「指定した文字列が対象の文字列に何個含まれるのかを取得する(count)」の動作を確認してみました。以下のページを参考にしました。
実装
以下のファイルを作成しました。
sample.py
print("dictionary".count("io"))
print("Good School".count("oo"))
print("Goooood".count("oo"))
print("Orange".count("aa"))
print("")
print("Good School".count("oo"))
print("Good School".count("oo", 3, 10))
print("Good School".count("oo", 3))
以下のコマンドを実行しました。
$ python3 sample.py
1
2
2
0
2
1
1
まとめ
何かの役に立てばと。