有没有办法检查是否使用交互式选项 -i 运行了 python 脚本?
例如
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!
有没有办法检查是否使用交互式选项 -i 运行了 python 脚本?
例如
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!