【发布时间】:2015-11-09 17:05:56
【问题描述】:
在以下情况下,我应该如何改进多个或长变量的分配以遵循规则 E122 和 E501:
def my_example_function():
return 1, 2, 3, 4
# How can I improve the following line:
first_variable, second_variable, third_variable, fourth_variable = my_example_function()
【问题讨论】: