Answers for "find starting and ending letter in python/py"

0

find starting and ending letter in python/py

word = "hello world"

>>> word.startswith("H")
True

>>> word.endswith("d")
True

>>> word.endswith("w")
False
Posted by: Guest on April-19-2021

Code answers related to "find starting and ending letter in python/py"

Browse Popular Code Answers by Language