Answers for "python run & & &"

12

run python file using python code

exec(open('file.py').read())
Posted by: Guest on May-24-2020
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