如何使用while和for循环以相反的顺序(从最后一项到第一项)打印列表

时间:2019-01-25 15:37:51

标签: python-3.x

我想使用while和for循环使用python以相反的顺序(从最后一项到第一项)打印列表

我尝试了切片运算符[::]获取浅表副本并还原了列表

select q.quote_id, r.rate
from quote q join
     rate_lookup r 
      on q.eff_date <= r.eff_date
where r.eff_date = (select max(r2.eff_date
                    from rate_lookup r2
                    where r2.eff_date <= q.eff_date
                   );

除了JTextField textField = new JTextField(15); lst = [10,"apples",3/4,'V'] for i in lst[::-1]: print(i,end=" ") 方法之外,还有其他方法吗?

0 个答案:

没有答案