Pythonスクリプトがインタラクティブオプション-iで実行されているかどうかを確認する方法はありますか?
例えば
if interactive_mode:
print 'I am in interactive mode!'
else:
print 'I am in batch mode!'
次に、
python hello_world.py
I am in batch mode!
python -i hello_world.py
>> I am in interactive mode!