2015-11-09 46 views
1

我應該如何改善許多或長變量的分配遵循的規則E122和E501的情況下,如下所示:Python的PEP-8:分配以下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() 

回答

3

就跨越它在多個線..

(first_variable, second_variable, 
    third_variable, fourth_variable) = my_example_function() 
+0

這是一個相當容易回答。我喜歡它,特別是因爲我的變量已經有大約80個字符。但我不知道爲什麼我忘了它。 – strpeter