执行下面Python代码后,输出的结果是?( )
1 lst = [1, 4, 3, 5, 2] 2 lst = [i[0] for i in sorted(enumerate(lst), key=lambda x: x[1])] 3 print(lst)