反向输出II
**题目:**按相反的顺序输出列表的值。
1
a = [‘one’, ‘two’, ‘three’]
print(a[::-1])