1. 错误提示很明显. `dict` 重定义了. 你可以看 `global` 关键词的说明: > Names listed in a global statement must not be used in the same code block textually preceding that global statement.
2. dict 是内置的类名,用来作变量名,习惯不好.
3. 发贴不注意缩进, 差评.
echo1937
2019-08-31 07:57:08 +08:00
首先,使用 global 时,先声明,再赋值: global dict dict = OrderedDict(list)