Python String Methods
Python String Methods
Python String Methods
Returns centred string using optional value as fill Return no of times value is in string. Optional parameters
Convert first character to upper case and rest lowercase Convert string to lower case. More aggresive than lower() character. Space (" ") is default specify where to search in string
isspace isupper
Return true if all characters are whitespaces
Return true if all characters are upper case
istitle
Python join
Return true if string follows rules of a title (all words are
lowercase except the first letter of each word) STRING METHODS Join iterable elements to end of stiring
By @AbzAaron
@AbzAaron