Table of Contents
string
string.atof()
string.atoi()
string.atol()
string.capitalize()
string.capwords()
string.center()
string.count()
string.expandtabs()
string.find()
string.index()
string.join()
string.joinfields()
string.ljust()
string.lower()
string.lstrip()
string.maketrans()
string.replace()
string.rfind()
string.rindex()
string.rjust()
string.rsplit()
string.rstrip()
string.split()
string.splitfields()
string.strip()
string.swapcase()
string.translate()
string.upper()
string.zfill()
re
struct
difflib
StringIO
cStringIO
textwrap
codecs
encodings
encodings.idna
encodings.utf_8_sig
unicodedata
stringprep
fpformat
string.
rfind
Return the highest index in s where substring sub is found, such that sub is contained within s[start,end]. Optional arguments start and end are interpreted as in slice notation.
Return -1 on failure.