Answers for "python if run in terminal"

0

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")
Posted by: Guest on September-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language