Reference
Function and method references for Python.
abs
Return the absolute value of a number.
str.capitalize
Return a copy with the first character titlecased and the rest lowercased.
dict.pop
Remove a key and return its value, with an optional default.
str.find
Return the lowest index of a substring, or -1 if absent.
dict.get
Return the value for a key, or a default — never raises.
str.join
Concatenate an iterable of strings with this string as the separator.
len
Return the number of items in a container.
list.count
Count how many items in the list equal a value.
list.index
Return the index of the first item equal to a value.