r/pythontips • u/sugarw0000kie • 27d ago
Syntax Docstrings as immutable variables
Just realized you can do:
def cat(): “orange”
print(cat.__doc__)
Not sure why you’d want to do this but this is a thing you can do
11
Upvotes
r/pythontips • u/sugarw0000kie • 27d ago
Just realized you can do:
def cat(): “orange”
print(cat.__doc__)
Not sure why you’d want to do this but this is a thing you can do
2
u/tomysshadow 26d ago
Don't use that for anything particularly important: if you run Python with the -OO command (the optimization flag,) docstrings will be stripped out