Instructions: You have to copy the code first. Then click on "Run Code" button and paste the code that you copied.
print("Welcome to Python Dictionary")
Dictionary={"append":"Adds an element at the end of the list","clear":"Removes all the elements from the list","copy":"Returns a copy of the list"
,"count":"Returns the number of elements with specified value","extend":"Add the element of the list(or any iterable),to the end of current list"
,"index":"Returns the index of the first element with the specified value","insert":"Adds an elementat the specified position"
,"pop":"Removes the elementat the specified position","remove":"Removes the item with the specified value"
,"reverse":"Reverses the order of the list","sort":"Sorts the list","and":"a logical operator","else":"used in conditional statment"
,"elif":"used in conditional statments, as else if","is" : "It returns true if two variables are having same object otherwise false. ",
"is not": "It returns false if two variables are having same object otherwise true" ,
"and" : "If both side of the operator evaluates to be true then the result is true otherwise false",
"or" : "If either side of operator evaluates to be true then the result is true otherwise false"
,"not" : "If operand is true it returns false and vice-versa. It is negate operation"
,"in" : "If the operand is in the given data structure it returns true otherwise false."
,"not in" : "If the operand is not in the given data structure it returns true otherwise false"
,"Binary AND" : "Bitwise anding of two specified operations are done"
,"Binary OR": "Bitwise oring of two specified operations are done"
,"Binary XOR" : "Bitwise xoring of two specified operations are done"
,"Binary Ones complement": "This is unary operation. Only ones complement of given operand is calculated"
,"Binary left shift": "The operand will be left shifted"
,"Binary right shift" : "The operand will be right shifted"
,"Addition" : "It does addition of two operands" ,"Subtraction": "It does subtraction of two operands"
,"Multiplication": "It does multiplication of two operands"
,"Division": "It does division of two operands" ,"Modulus" :"It returns remainder after the division of the operands"
,"Exponents": "It returns exponential calculation result, It does by raising number left of ** (exponent operator)to the power by number after exponents operator."
,"and": "A logical operator" ,"as": "To create an alas" ,"assert": "For debugging" ,"break": "To break out of loop"
,"class": "To define a class" ,"continue": "To continue to the next iteration of a loop"
,"def": "To define a function","del": "To delete an object"
,"elif" : "Used in conditional statements, same as else if","else": "Used in conditional statements"
,"except": "Used with exceptions, what to do when an exception occurs"
,"false": "Boolean value, result of comparison operations","finally": "Used with exceptions, a block of code that will be executed no matter if there is an exception or not"
,"for": "To create a for loop" ,"from": "To import specific parts of a module"
,"global": "To declare global variable" ,"if": "To make a conditional statements","import": "To import a module"
,"in": "To check if a value is present in a list tuple, etc" ,"is": "To test if two variables are equal"
,"lambda": "To create an anonymous function","None": "Represents null value"
,"nonlocal": "to declare a non-local variable","not": "A logical operator"
,"or": "A logical operator" ,"pass": "A null statement a statements that will do nothing","raise": "To raise an exception"
,"return": "To exit a function and return a value" ,"True": "Boolean value , result of comparison operations","try": "To make a try , except statements"
,"while": "To create a while loop" ,"with": "Used to simplify exception handing" ,"yield": "To end a function, returns a generator",
"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"
,"all": "It return ture if all iterable element of the dictionary are ture.If not, any() return false"
,"any": "It return ture if anyone iterable element of the dictionary is ture" ,"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": "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."
,"Popitem": "Functions removes an element."
,"Setdefault": "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.","bject": "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","roperty": "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" }
print("Enter word:")
Search=input()
print("The requried meaning is:")
print(Dictionary[Search])
print("Thank you for using Dictionary!!!")
Outcome are as shown in images