语句 d = ('x': 1, 'y': 2, 'z': 3) 在 Python 3.6 中显示错误。新版本的正确语法是什么?

The statement d = ('x': 1, 'y': 2, 'z': 3) is showing errors in Python 3.6. What would be the correct syntax for the new version ?

说明变量注解不能和元组拆包结合使用

请告诉我 Python 3.6

的正确语法

对象的正确语法是:

d = {'x': 1, 'y': 2, 'z': 3}