String editor
find
index
isalnum
isalpha
isupper
islower
isprintable
isspace
istitle
endswith
startswith
swapcase
title
#a = ' '
#print (a.isspace())
a = 'Fida'
print (a.istitle())
#a = 'Fida'
#print (a.swapcase())
a = 'hello fida my name is harry'
print (a.title())
Comments
Post a Comment