📅  最后修改于: 2022-03-11 14:45:45.868000             🧑  作者: Mango
# Important: This syntax will create an empty dictionary and not an empty set
a = {}
print(type(a))
# An empty set can be created using the below syntax:
b = set()
print(type(b))