String Methods Flashcards
capitalize()
converts first character to capital letter
center()
pads string with specified character
casefold()
converts to casefolded strings
count()
returns occurences of substring in string
endswith()
checks if string end with the specified suffix
expandtabs()
replaces tab character with spaces
encode()
returns encoded string of given string
find()
returns highest index of substring
format()
formats string into nicer output
index()
returns index of substring
isalnum()
checks alphanumeric character
isalpha()
checks if all characters are alphabets
isdecimal()
checks decimal characters
isdigit()
checks digit characters
isidentifier()
checks for valid identifier
islower()
checks if all alphabets in a string are lowercase
isnumeric()
checks numeric characters
isprintable()
checks printable character
isspace()
checks whitespace characters
istitle()
checks for titlecased string
isupper()
returns if all characters are uppercase characters
join()
returns a concatenated string
ljust()
returns left-justified string of given width
rjust()
returns right-justified string of a given width
lower()
returns lowercased string
upper()
returns uppercased string
swapcase()
swap uppercase characters to lowercase; vice versa
lstrip()
removes leading characters
rstrip()
removes trailing characters
strip()
removes both leading and trailing characters
partitiion()
returns a tuple
maketrans()
returns a translation table
rpartition()
returns a tuple
translate()
returns mapped charactered string
replace()
replaces substring inside
rfind()
returns the highest index of substring
rindex()
returns highest index of substring
split()
splits string from left
rsplit()
splits string from right
splitlines()
splits string at line boundaries
startswith()
checks if string starts with specified string
title()
returns a title cased string
zfill()
returns a copy of the string padded with zeros
format_map()
formates the string using dictionary
any()
checks if any element of an iterable is true
all()
returns true when all elements in iterable is true
ascii()
returns string containing printable representation
bool()
convers a value to Boolean
bytearray()
returns array of given byte size
bytes()
returns immutable bytes object
compile()
returns a python code object
complex()
creates a complex number
enumerate()
returns an enumerate object
filter()
constructs iterator from elements which are true
float()
returns floating point number from number, string
input()
reads and returns a line of string
int()
returns integer from a number or string
iter()
returns iterator for an object
len()
returns length of an object
max()
returns largest element
min()
returns smallest element
map()
applies function and returns a list
ord()
returns unicode code point for unicode character
reversed()
returns reversed iterator of a sequence
slice()
creates a slice object specified by range()
sorted()
returns sorted list from a given iterable
sum()
add items of an iterable
zip()
returns an iterator of tuples