Удаление элементов из словаря Python с использованием метода Clear ()

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

# Deleting entire Dictionary
Dictionary.clear()
print("\nDeleting Entire Dictionary: ", Dictionary)
Outrageous Ostrich