标签: python python-2.7
为什么在列表理解的末尾进行反向调用什么都不返回?
这不起作用-行为None
lines = ['{},'.format(line.replace('"', '').strip().lower()) for line in lines].reverse()
但这很好用-行是我的列表以相反的顺序
lines = ['{},'.format(line.replace('"', '').strip().lower()) for line in lines] lines.reverse()