我正在从 Google 代码类学习 python。我正在尝试练习。
def front_x(words):
x_list, ord_list = []
for word in words:
if word[0] == 'x':
x_list.append(word)
else:
ord_list.append(word)
return sorted(x_list) + sorted(ord_list)
我相信由于在一行上初始化了两个空列表而引发了错误。如果在单独的行上初始化它们,则不会再发生错误。这是原因吗?