(aka. A Quine So Clever It’s Cheating)
# doesn't work in Python 3.9+ import inspect, __main__ print(inspect.getsource(__main__), end="")
(there should be a newline at the end btw)
pi@pie:~ $ python3 --version Python 3.9.2