📜  python代码示例中的空集

📅  最后修改于: 2022-03-11 14:45:45.868000             🧑  作者: Mango

代码示例1
# 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))