Reference Materials
Certification Courses
Created with over a decade of experience and thousands of feedback.
Python Built-in Functions
returns absolute value of a number
returns true when all elements in iterable is true
Checks if any Element of an Iterable is True
Returns String Containing Printable Representation
converts integer to binary string
Converts a Value to Boolean
returns array of given byte size
returns immutable bytes object
Checks if the Object is Callable
Returns a Character (a string) from an Integer
returns class method for given function
Returns a Python code object
Creates a Complex Number
Deletes Attribute From the Object
Creates a Dictionary
Tries to Return Attributes of Object
Returns a Tuple of Quotient and Remainder
returns an enumerated object
Runs Python Code Within Program
Executes Dynamically Created Program
constructs iterator from elements which are true
returns floating point number from number, string
returns formatted representation of a value
returns immutable frozenset object
returns value of named attribute of an object
returns dictionary of current global symbol table
returns whether object has named attribute
returns hash value of an object
Invokes the built-in Help System
Converts to Integer to Hexadecimal
Returns Identify of an Object
reads and returns a line of string
returns integer from a number or string
Checks if a Object is an Instance of Class
Checks if a Class is Subclass of another Class
returns an iterator
Returns Length of an Object
creates a list in Python
Returns dictionary of a current local symbol table
Applies Function and Returns a List
returns the largest item
returns memory view of an argument
returns the smallest value
Retrieves next item from the iterator
creates a featureless object
returns the octal representation of an integer
Returns a file object
returns an integer of the Unicode character
returns the power of a number
Prints the Given Object
returns the property attribute
returns a sequence of numbers
returns a printable representation of the object
returns the reversed iterator of a sequence
rounds a number to specified decimals
constructs and returns a set
sets the value of an attribute of an object
returns a slice object
returns a sorted list from the given iterable
transforms a method into a static method
returns the string version of the object
Adds items of an Iterable
Returns a proxy object of the base class
Returns a tuple
Returns the type of the object
Returns the __dict__ attribute
Returns an iterator of tuples
Function called by the import statement
Python Dictionary Methods
Removes all Items
Returns the Shallow Copy of a Dictionary
creates dictionary from given sequence
Returns Value of The Key
returns view of dictionary's (key, value) pair
Returns View Object of All Keys
removes and returns element having given key
Returns & Removes Latest Element From Dictionary
Inserts Key With a Value if Key is not Present
Updates the Dictionary
returns view of all values in dictionary
Python List Methods
Adds a single item to the end of the list
Removes all items from the list
Returns a shallow copy of the list
Returns count of an item in the list
Adds iterable items to the end of a list
Returns the index of the item in a list
Insert an item at a specified index
Removes item at a specified index
Removes an item from the list
Reverse items of a list
Sort items of a list
Python Set Methods
returns immutable frozenset object
adds element to a set
remove all elements from a set
Returns Shallow Copy of a Set
Returns Difference of Two Sets
Updates Calling Set With Intersection of Sets
Removes an Element from The Set
Returns Intersection of Two or More Sets
Updates Calling Set With Intersection of Sets
Checks Disjoint Sets
Checks if a Set is Subset of Another Set
Checks if a Set is Superset of Another Set
Removes an Arbitrary Element
removes the specified element from the set
Returns the symmetric difference of sets
Updates the Set with symmetric difference
Returns the union of sets
Add elements to the set
Python String Methods
Converts first character to Capital Letter
converts to case folded strings
Pads string with specified character
returns occurrences of substring in string
returns encoded string of given string
Checks if String Ends with the Specified Suffix
Replaces Tab character With Spaces
Returns the index of first occurrence of substring
formats string into nicer output
Formats the String Using Dictionary
Returns Index of Substring
Checks Alphanumeric Character
Checks if All Characters are Alphabets
Checks Decimal Characters
Checks Digit Characters
Checks for Valid Identifier
Checks if all Alphabets in a String are Lowercase
Checks Numeric Characters
Checks Printable Character
Checks Whitespace Characters
Checks for Titlecased String
returns if all characters are uppercase characters
Returns a Concatenated String
returns left-justified string of given width
returns lowercased string
Removes Leading Characters
returns a translation table
Returns a Tuple
Replaces Substring Inside
Returns the Highest Index of Substring
Returns Highest Index of Substring
returns right-justified string of given width
Returns a Tuple
Splits String From Right
Removes Trailing Characters
splits string into a list of substrings
Splits String at Line Boundaries
Checks if String Starts with the Specified String
removes both leading and trailing characters
swap uppercase characters to lowercase; vice versa
Returns a Title Cased String
returns mapped charactered string
returns uppercased string
Returns a Copy of The String Padded With Zeros