Python Reverse Method

0
11K

reverse() can flip the list around. The reverse() method doesn't return any value. It updates the existing list. Here's an example:

x = ["a", "b"]

x.reverse()

["b", "a"]


BigMoney.VIP Powered by Hosting Pokrov