Accéder aux éléments à partir d'un dictionnaire Python en utilisant la méthode GET

# welcome to softhunt.net
# Python program to demonstrate
# accessing a element from a Dictionary

# Creating a Dictionary
Dictionary = {0: 'Softhunt', 1: '.net', 2: 'By Ranjeet', 'user': 'Greetings to you'}
print("Dictionary", Dictionary)

# accessing a element using get()
# method
print("Accessing a element using get:", Dictionary.get('user'))
Outrageous Ostrich