8
votes
4answers
2k views
Inheritance and Overriding __init__ in python
I was reading 'Dive Into Python' and in the chapter on classes it gives this example:
class FileInfo(UserDict):
"store file metadata"
def __init__(self, filename=None):
…
4
votes
8answers
508 views
Inverting a string in Python
I was looking for a way to print a string backwards, and after a quick search on google, I found this method:
Suppose 'a' is a string variable. This will return the 'a' string backwards: …
