标签: python python-3.x
在python 3.x中(不确定python 2.x),如果您使用数字集:
print(set([3,5,7,2]))
它将为您提供一个没有重复的排序列表,即
{2, 3, 5, 7}
我可以使用一组不重复的数字进行排序吗? (即,这种行为是否始终存在于python中?)