Employee = {"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}
print("Printing Dictionary:")
for x,y in Employee.items():
print(x,y)
print("Lenth of dictionary:",len(Employee))
print("dictionary Keys:",Employee.keys())
print("dictionary values:",Employee.values())
print("dictionary Items:",Employee.items())
print("dictionary POP:",Employee.pop('salary'))
print("After Pop Item",Employee)
0 Comments