DICTIONARY & ITS FUNCTIONS EXPLAINED
# dictionary is nothing but key value is pairs # d1 = {} # print(type(d1)) # d2 = {"santosh" : "roti", "amit" : "mutton", "roshan" : "chawal", "balveer" : {"L" : "machchi", "d" : "murga", }} # d2["aslam"] = "biryani" # del d2["aslam"] # print(d2) # d3 = d2.copy() # del d3["roshan"] # d2.update({"leena": "toffee"}) # print(d2.keys()) # print(d2.values()) # # dc = {"mutable": "Which can be change", # "immutable": "Which cannot be changed", # "tuple": "A function which cannot be changed", # "list": "A function which can be changed", # "help": "kisi ki madad karna", # "suggest" : "sujhav dena"} # n1 = input("Enter your word\n") # print("your words meaning is :...