Python String Methods Reference
Python String Methods Reference
strip()
lstrip()
rstrip()
lower()
upper()
capitalize()
title()
replace(old, new)
Replaces substrings.
split(separator)
join(iterable)
find(sub)
startswith(prefix)
endswith(suffix)
isalpha()
isdigit()
isalnum()
isspace()