倒序:
lst = [1, 3, 5]
print(list(reversed(lst)))
print(lst[::-1])
2.dict是不保證順序的,雖然python3.7以上是默認有序,但不應該假設dict有序