When running a Python file from the command line, you use python3 <file>
, but VSCode Code Runner uses python3 -u <file>
(by default), so I was wondering:
- What's the difference (since after testing I see no visible difference)?
- What is the
-u
part called?