capitalize() | Change to upper case for the first char |
center() | Center the string by using filling chars |
casefold() | Change to lower case for all upper case chars in a string |
count() | Counting Presence of sub string inside main string |
endswith() | Checking if string ends with input string |
expandtabs() | Checking if string ends with input string |
find() | Case sensitive string search |
index() | Case sensitive string search |
isalnum() | Check if all chars are alphanumeric in a string |
isalpha() | Check if all chars are alphabets in a string |
isdecimal() | Check if all chars are decimal numbers in a string |
isdigit() | Check if all chars are digits in a string |
isidentifier() | Check if the string is identifier |
islower() | Check if all chars are lower case only |
isnumeric() | Check if all chars are numeric |
isprintable() | Check if all chars are printable or not |
isspace() | Check if all chars are whitespace or not |
istitle() | Check if all words starts with upper case letters |
isupper() | Check if all chars are upper case letters |
join() | Join elements of a iterable object |
ljust() | Left Justifying the string |
lower() | Change all upper case to lower case chars |
lstrip() | Removes space or char from left side of the string |
partition() | Breaking string by using search word |
replace() | search and replace string inside a main string |
rfind() | search from right and returns the position of the matching string |
rindex() | search from right and returns the position of the matching string |
rjust() | Right Justify the string |
rpartition() | Breaking string by using search word from right |
rsplit() | Breaking string by using delimiter |
rstrip() | Removing chars from right side |
split() | Split the string using delimiters |
splitlines() | Break the string using line breaks |
startswith() | Check if string is starting with or not |
strip() | Remove space or char from left or right of the string |
title() | First char of each word to upper case letter |
translate() | Mapping chars of a string |
upper() | Change all lower case to upper case letter |
zfill() | fill the left of the string with zeros |