Python Function Name
Python Function Name
Python abs()
Return the absolute value of a number
Function
Python anext() used for getting the next item from an asynchronous
Function iterator
Python bin()
Convert integer to a binary string
Function
Python breakpoint() It is used for dropping into the debugger at the call site
Function during runtime for debugging purposes
Python
classmethod() Returns a class method for a given function
Function
Python compile()
Returns a Python code object
Function
Python complex()
Creates Complex Number
Function
Python delattr()
Delete the named attribute from the object
Function
Python dict()
Creates a Python Dictionary
Function
Python exec()
Used for the dynamic execution of the program
Function
Function
Python frozenset()
Returns immutable frozenset
Function
Python getattr()
Access the attribute value of an object
Function
Python globals()
Returns the dictionary of the current global symbol table
Function
Python hasattr() Check if an object has the given named attribute and
Function return true if present
Python hash()
Encode the data into an unrecognizable value
Function
Python input()
Take input from the user as a string
Function
Python int()
Converts a number in a given base to decimal
Function
Python isinstance()
Checks if the objects belong to a certain class or not
Function
Python issubclass()
Check if a class is a subclass of another class or not
Function
Function
Python len()
Returns the length of the object
Function
Python list()
Creates a list in Python
Function
Python locals()
Returns the dictionary of the current local symbol table
Function
Python
memoryview() Returns memory view of an argument
Function
Python next()
Receives the next item from the iterator
Function
Python object()
Returns a new object
Function
Python open()
Open a file and return its object
Function
Python pow()
Compute the power of a number
Function
Python print()
Print output to the console
Function
Python property()
Create a property of a class
Function
Python range()
Generate a sequence of numbers
Function
Python repr()
Return the printable version of the object
Function
Python round() Rounds off to the given number of digits and returns the
Function floating-point number
Python setattr()
Assign the object attribute its value
Function
Python slice()
Returns a slice object
Function
Python
staticmethod() Converts a message into the static message
Function
Python str()
Returns the string version of the object
Function
Function Name Description
Python sum()
Sums up the numbers in the list
Function
Python super()
Returns a temporary object of the superclass
Function
Python tuple()
Creates a tuple in Python
Function
Python type()
Returns the type of the object
Function
Python zip()
Maps the similar index of multiple containers
Function
Python __import__()
Imports the module during runtime
Function