Tell if Python is in interactive mode

__main__.__file__ doesn’t exist in the interactive interpreter:

import __main__ as main
print hasattr(main, '__file__')

This also goes for code run via python -c, but not python -m.

Leave a Comment