my_str="Welcome to plus2net.com"
print(my_str.endswith('com')) # Output is True
print(my_str.endswith('com',4,6)) # Output is False
print(my_str.endswith('com',3,6)) # Output is True
print(my_str.endswith('net',16,19)) # Output is True
print(my_str.endswith('net')) # Output is False
my_str.endswith(search_string,start,end))
search_string : String to be checked at the end of the main string. start: Optional , check to start from this position end : Optional , check to end before this position.
import os
for files in os.listdir('.'):
if files.endswith('.jpg'):
print(files)
All String methods
Author
🎥 Join me live on YouTubePassionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.