#create an empty dictionary my_dictionary = {} print(my_dictionary) #to check the data type use the type() function print(type(my_dictionary)) #output #{} #<class 'dict'>