标签: python python-3.x python-2.7
我想知道我们是否可以简化Python中的代码:
a = 5 b = a c = a d = a ...
答案 0 :(得分:4)
简化示例的唯一方法是使用链式分配。
a = b = c = d = 5