# Python CodeRecipe|endswith()の使い方

Home String Methods

今回は、指定した文字列で終了するかどうか?を判定するendswith()の使い方について学習していきます。 指定した文字列で終わっていれば「True」を返します。

# endswith()の例1

txt = "Hello, welcome to my world."
x = txt.endswith(".")
print(x)

# endswith()の定義及び使い方

endswith()関数は、stringは、指定した値で終了します。それ以外の場合はFalseです。

# endswith()の構文

string.endswith(value, start, end)

# endswith()の引数

value:必須. 文字列が次の文字列で終わるかどうかをチェックする値

start:オプション.検索を開始する位置を指定する整数型 (Integer) の値です。

end:オプション.検索を終了する位置を示す整数型(Integer) の値を指定します。

# endswith()の例2

txt = "Hello, welcome to my world."
x = txt.endswith("my world.")
print(x)

# endswith()の例3

txt = "Hello, welcome to my world."
x = txt.endswith("my world.", 5, 11)
print(x)

Home String Methods