Useful Functions


Function/Method Name Description Example(s) of use

lower() This will take a string and convert all characters to lower case name.lower() "Bob".lower

upper() This will take a string and convert all characters to upper case name.upper() "Bob".upper()

len(string) This will return the number of characters in a given string len(name) len("Bob")