if a selected run 1st script python if b selected run 2nd script code example
Example: 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")