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]
.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3bdb1-2c2ac.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3bdb1-2c2ac.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?