Is there any difference in sorting between list.sort (reverse=true) and list.reverse ()?

I would like to ask you heroes: the list in python, is there any difference in the order of
list.sort (reverse=true) and list.reverse ()?
gets the same result.

Nov.22,2021
The function of reverse in
list.sort (reverse=true) simply determines whether to sort in descending or ascending order, and
list.reverse () flips the array


-sharp 
a = [2, 3, 1]
a.sort(reverse=True)
print(a)  -sharp [3, 2, 1]

-sharp 
a = [2, 3, 1]
a.reverse()
print(a)  -sharp [1, 3, 2]
.
Menu