📅  最后修改于: 2022-03-11 14:45:03.621000             🧑  作者: Mango
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")