Python reference
Returns the absolute value of a number
Returns True if all elements in the iterable are true
Returns True if any element in the iterable is true
Returns a string containing a printable representation
Converts an integer to a binary string
Converts a value to a Boolean
Returns a string representing a character
Creates a dictionary
Returns an enumerate object
Constructs an iterator from elements that return true
Returns a floating-point number from a number or string
Formats a specified value
Returns the hash value of an object
Allows user input
Returns an integer object
Returns the length of an object
Creates a list in Python
Applies a function and returns a list
Returns the largest item
Returns the smallest item
Removes all elements from the dictionary
Returns a shallow copy of the dictionary
Creates a new dictionary with keys from seq and value
Returns the value for the given key
Returns a view object of dictionary's (key, value) pairs
Returns a view object of dictionary keys
Removes and returns an element with given key
Removes and returns arbitrary (key, value) pair
Inserts key with value if key not in dictionary
Updates dictionary with key/value pairs
Returns a view object of dictionary values
Adds an element at the end of the list
Removes all elements from the list
Returns a shallow copy of the list
Returns the count of specified element
Adds elements of a list to another list
Returns the index of the first matched element
Inserts an element at the specified position
Removes and returns the element at given position
Removes the first item with the specified value
Reverses the order of the list
Sorts the elements of a list
Adds an element to the set
Removes all elements from the set
Returns a shallow copy of the set
Returns the difference of two or more sets
Removes all elements of another set from this set
Removes an element if it is a member
Returns the intersection of two sets
Updates the set with the intersection
Returns True if two sets have a null intersection
Returns True if another set contains this set
Returns True if this set contains another set
Removes and returns an arbitrary set element
Removes an element from the set
Returns the symmetric difference of two sets
Updates a set with the symmetric difference
Returns the union of sets
Updates the set with the union
Converts the first character to uppercase
Converts string into lower case
Returns a centered string
Returns the number of times a value occurs
Returns an encoded version of the string
Returns true if the string ends with the value
Sets the tab size of the string
Searches for a value and returns its position
Formats specified values in a string
Searches for a value and returns its position
Returns True if all characters are alphanumeric
Returns True if all characters are alphabetic
Returns True if all characters are decimals
Returns True if all characters are digits
Returns True if all characters are lower case
Returns True if all characters are numeric
Returns True if all characters are whitespaces
Returns True if the string follows title case
Returns True if all characters are upper case
Joins the elements of an iterable to the string
Returns the number of times a value occurs
Searches for a value and returns its position