On my saving a .py file, IDLE (Python 3.9 x64) will add a newline after the code itself. It is setting off my OCD while making me curious. For instance, take this entirely original last line of a program while coding:
print("Hello, world!")
Yet, when saved, it becomes:
print("Hello, world!")
# ghost line!
What is the significance of that extra line—can I turn it off?