python in terminal code example
Example 1: run python file using python code
exec(open('file.py').read())
Example 2: python if run in terminal
import sys
if sys.stdin.isatty():
# running interactively
print "running interactively"
else:
with open('output','w') as f:
f.write("running in the background!\n")