我们知道,
{} # Represents a dict
和
{'one': 1} # Again a dict
如何以及为什么这是一套:
{'one', 'two', 'three', 'four'} # I thought it should give syntax error
但它给出了:
set(['one', 'two', 'three', 'four']) # Strange ?? [ Should this happen ? ]
你能提供一些官方文件的链接吗?