Python’s __reversed__
magic method implements the reversed()
built-in function that returns a reverse iterator over the values of the given sequence such as a list, a tuple, or a string.
Syntax
__reversed__(self)
Let’s have a look at an example next.
Example
In the following code, you create a Person class with one name attribute. The __reversed__
dunder method uses slicing with negative step size to return the reversed string object when calling reversed(alice)
on a Person object alice
.
class Person: def __init__(self, name): self.name = name def __reversed__(self): return self.name[::-1] alice = Person('alice') print(reversed(alice)) # ecila
Note that the returned string object is an iterator, so this is a perfectly valid implementation of the __reversed__
magic method.
Background Video Reversing a List
Background Video Slicing
Where to Go From Here?
Enough theory. Let’s get some practice!
Coders get paid six figures and more because they can solve problems more effectively using machine intelligence and automation.
To become more successful in coding, solve more real problems for real people. That’s how you polish the skills you really need in practice. After all, what’s the use of learning theory that nobody ever needs?
You build high-value coding skills by working on practical coding projects!
Do you want to stop learning with toy projects and focus on practical code projects that earn you money and solve real problems for people?
🚀 If your answer is YES!, consider becoming a Python freelance developer! It’s the best way of approaching the task of improving your Python skills—even if you are a complete beginner.
If you just want to learn about the freelancing opportunity, feel free to watch my free webinar “How to Build Your High-Income Skill Python” and learn how I grew my coding business online and how you can, too—from the comfort of your own home.