append: Append object to the end of the list.
clear: Remove all items from list.
copy: Return a copy of them list.
count: Return number of occurrences of item.
extend: Extend list by appending. element provide as argument to the function extend.
index: Return index of first occurrence of the element provide as argument to the index function.
insert: Insert element before index, here index and element are provide as argument to the insert function i.e.insert(index, element)
pop: Remove and return item at index.
remove: Remove first occurrence of element.
reverse: Reverse the list.
Sort: sort the list.
len(): It returns the length of the dictionary i.e. number of items dictionary consist of.
Sorted(): It return key of dictionary, it sort keys.
abs(): Returns the absolute value of a number.
all(): Returns ture if all items in an iterable object are ture.
any(): Returns ture if any item in an iterable object is ture.
ascii():Returns a readable version of an object. Replace none-ascii characters with escape character.
bin(): Returns the binary version of a number.
bool(): Returns the boolean value of the specified object.
bytearray(): Returns an array of bytes.
bytes(): Returns a bytes object.
callablr(): Returns ture if the specified object is callable, otherwise false.
Chr(): Returns a character from the specified Unicode code.
classmethode(): converts a method into a class method.
Compile(): Returns the specified source as an object, ready to be executed.
Complex(): Returns a complex number.
delattr(): Delete the specified attribute from the specified object
dict(): Returns a dictionary
dir(): Returns a list of the specified object's properties and methods
divmod():Returns the quotient and the remainder when argument 1 is divided by argument 2
enumerate():Take a collection and returns it as an enumerate object
eval(): Evaluates and executes an expression
exec(): Executes the specified code
filter():Use a filter function to exclude items in an iterable object
float(): Returns a floating point number
format():Formate a specified value
frozenset (): Returns a frozenset object
getattr(): Returns the value of the specified attribute
globals(): Returns the current global symbol table as a dictionary
hasattr(): Returns True if the specified object has the specified attribute
hash():Returns the hash value of a specified object
help():Executes the built-in help system
hex():Convert a number into a hexadecimal value
id():Returns the id of an object
input():Allowing user input
int():Returns an integer number
isinstance():Returns True if a specified object is an instance of a specified object
issubclass():Returns True if a specified class is a subclass of a specified object
iter():Returns an iterator object
len():Returns the length of an object
list():Returns a list
locals():Returns an updated dictionary of the current local symbol table
map(): Returns the specified iterator with the specified function applied to each item
max():Returns the largest item in an iterable
memoryview():Returns a memory view object
min():Returns the smallest item in an iterable
next():Returns the next item in an iterable
Clear: Functions removes all elements from dictionaries.
Copy: Functions returns the copy of the dictionary.
gel(key): Functions returns the value of the key specified in argument.
item: Functions returns all contents of dictionary.
Keys: Functions returns all the keys of dictionary.
Pop(key): Functions removes value for key specified in argument.
Popitem: Functions removes an element.
Setdefault(key): Functions returns the value of key specified in argument.
update: Functions is used to update dictionary values.
Values: Functions returns all the values of dictionary.
Object: Returns a new object
Oct: Converts a number into an octal
Open: Opens a file and returns a file object
Ord: Covert an integer representing the unicode of the specified character
Pow: Returns the value of x to the power of y
Print: prints to the standard output device
Property: Gets, sets, deletes a property
range: Returns a sequence of numbers, starting from 0 and increments by 1
repr: Returns a readable version of an object
reversed: Returns a reversed iterator
round: Round a numbers
Set: Returns a new set object
setattr: Sets an attribute (property/ method) of an object
Slice: Returns a slice object
Sorted: Returns a sorted list
@staticmethod: Converts a method into a static method
Str: Returns a string object
sum: Sums the items of an iterator
tuple: Returns a tuple
type: Returns the type of an object
Vars: Returns the_dict_ pr9 of an object
zip: Returns an iterator, from two or more iterators