Copyright © tutorialspoint.com
This method returns True if the string ends with the specified suffix, otherwise return False optionally restricting the matching with the given indices start and end.
str.endswith(suffix[, start[, end]]) |
Here is the detail of parameters:
suffix: could be a string or could also be a tuple of suffixes to look for.
start : slice begins from here.
end : slice ends here.
It returns True if the string ends with the specified suffix, otherwise return False.
#!/usr/bin/python str = "this is string example....wow!!!"; suffix = "wow!!!"; print str.endswith(suffix); print str.endswith(suffix,20); suffix = "is"; print str.endswith(suffix, 2, 4); print str.endswith(suffix, 2, 6); |
This will produce following result:
True True True False |
Copyright © tutorialspoint.com