Concept Flow - Python Interactive Mode vs Script Mode
Start Python
Type code line
Immediate output
Repeat
Write code in file
Run file: python script.py
Output after full run
End
This flow shows how Python runs in two ways: Interactive Mode runs code line-by-line with immediate output, while Script Mode runs a whole file and then shows output.