Advantages of Python
Advantage means why a company or a college lab actually uses Python. You write less code for everyday jobs: read a CSV, call an API, total a list of marks. A teammate can review it without translating every line.
pip brings Flask, pandas, pytest. That ecosystem is the real reason prototypes become products. You test an idea on Friday and still read the same file on Monday.
Be honest in the viva. Pure Python can be slower than C or Java on heavy CPU. GIL can limit some multi-thread number crunching. Teams still hire Python because delivery speed and libraries beat raw CPU for most business scripts.
Advantages of Python — output — 3 files ready. Three lines do real work — that is the advantage.
Two advantages + one limit (speed / GIL).