abs()			#Returns the absolute value of a numberall()			#Returns True if all items in an iterable object are trueany()			#Returns True if any item in an iterable object is trueascii()			#Returns a readable version of an object. Replaces none-ascii characters with escape characterbin()			#Returns the binary version of a numberbool()			#Returns the boolean value of the specified objectbytearray()		#Returns an array of bytesbytes()			#Returns a bytes objectcallable()		#Returns True if the specified object is callable, otherwise Falsechr()			#Returns a character from the specified Unicode code.classmethod()	#Converts a method into a class methodcompile()		#Returns the specified source as an object, ready to be executedcomplex()		#Returns a complex numberdelattr()		#Deletes the specified attribute (property or method) from the specified objectdict()			#Returns a dictionary (Array)dir()			#Returns a list of the specified object's properties and methodsdivmod()		#Returns the quotient and the remainder when argument1 is divided by argument2enumerate()		#Takes a collection (e.g. a tuple) and returns it as an enumerate objecteval()			#Evaluates and executes an expressionexec()			#Executes the specified code (or object)filter()		#Use a filter function to exclude items in an iterable objectfloat()			#Returns a floating point numberformat()		#Formats a specified valuefrozenset()		#Returns a frozenset objectgetattr()		#Returns the value of the specified attribute (property or method)globals()		#Returns the current global symbol table as a dictionaryhasattr()		#Returns True if the specified object has the specified attribute (property/method)hash()			#Returns the hash value of a specified objecthelp()			#Executes the built-in help systemhex()			#Converts a number into a hexadecimal valueid()			#Returns the id of an objectinput()			#Allowing user inputint()			#Returns an integer numberisinstance()	#Returns True if a specified object is an instance of a specified objectissubclass()	#Returns True if a specified class is a subclass of a specified objectiter()			#Returns an iterator objectlen()			#Returns the length of an objectlist()			#Returns a listlocals()		#Returns an updated dictionary of the current local symbol tablemap()			#Returns the specified iterator with the specified function applied to each itemmax()			#Returns the largest item in an iterablememoryview()	#Returns a memory view objectmin()			#Returns the smallest item in an iterablenext()			#Returns the next item in an iterableobject()		#Returns a new objectoct()			#Converts a number into an octalopen()			#Opens a file and returns a file objectord()			#Convert an integer representing the Unicode of the specified characterpow()			#Returns the value of x to the power of yprint()			#Prints to the standard output deviceproperty()		#Gets, sets, deletes a propertyrange()			#Returns a sequence of numbers, starting from 0 and increments by 1 (by default)repr()			#Returns a readable version of an objectreversed()		#Returns a reversed iteratorround()			#Rounds a numbersset()			#Returns a new set objectsetattr()		#Sets an attribute (property/method) of an objectslice()			#Returns a slice objectsorted()		#Returns a sorted liststaticmethod()	#Converts a method into a static methodstr()			#Returns a string objectsum()			#Sums the items of an iteratorsuper()			#Returns an object that represents the parent classtuple()			#Returns a tupletype()			#Returns the type of an objectvars()			#Returns the __dict__ property of an objectzip()			#Returns an iterator, from two or more iterators