python中怎样用list将26个小写字母逆置
提问:python中怎样用list将26个小写字母逆置
网友回答:
一条语句实现:
list1 = [chr(i) for i in range(122,96,-1)]
结果