What? There is no lib
module.
$ python3.13 -c 'import lib'
Traceback (most recent call last):
File "<string>", line 1, in <module>
import lib
ModuleNotFoundError: No module named 'lib'
$
Post funny things about programming here! (Or just rant about your favourite programming language.)
What? There is no lib
module.
$ python3.13 -c 'import lib'
Traceback (most recent call last):
File "<string>", line 1, in <module>
import lib
ModuleNotFoundError: No module named 'lib'
$
OP wrote this add() function and has provided their own lib module in the source code.
Oh, so it’s not Python that’s cursed.
One of Python’s design philosophies is—or at least was—“we are all consenting adults here.” If you really want to turn Python into Brainfuck, the interpreter isn’t going to stop you.
That's quite cool. But I'm not sure what's the use case for it.
To make bugs less traceable, I guess.
Makes sence if u think about it. We use comments as docstrings that the interpreter has an understanding of. Python lets u fuck with its internals (at least in an immutable manner) so why not fuck with comments.
TMI 😢