======
len()
len('Hello World!')
'Hello World!'[-1]
'Hello World!'[-12]
string[-len(string)]
string[len(string)-1]
string[-1]
len(string)-1
*
str1 = 'Hello'
str1 * 2
'HelloHello'
str1
str1 * 5
'HelloHelloHelloHelloHello'
title()
lower()
upper()
count(str, start, end)
find(str, start, end)
index(str, start, end)
endswith()
startswith()
isalnum()
islower()
isupper()
isspace()
istitle()
lstrip()
rstrip()
strip()
replace(oldstr, newstr)
join()
partition(separator)
split(delimiter)
charCount(ch,st)
replaceVowel(st)
reverseString(st)
checkPalin(st)