新版本的变更 / Python 3.7

# *** Python <= 3.5 ***
print({"one"1"two"2"three"3})
# {'three': 3, 'one': 1, 'two': 2}

# *** in version 3.7: ***
print({"one"1"two"2"three"3})
# {'one': 1, 'two': 2, 'three': 3}