Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to check suffix in python

string = "abcdefing"
res = string.endswith("ing")
print(res)
#output True

res = string.endswith("abc")
print(res)
#output False
 
PREVIOUS NEXT
Tagged: #check #suffix #python
ADD COMMENT
Topic
Name
3+5 =