Organizing code across files
import math, from x import y, and the infamous from module import * (please don't in production).
Quirk — __name__: When you run a file directly, __name__ == "__main__". When imported, it's the module name. This powers the if __name__ == "__main__": pattern every tutorial uses.
Output
Press Run to execute your code.