简体   繁体   中英

Running a Python script from the Python Shell

I wrote a script and saved it as test.py (code shown below). And when I run it from the script (Run Module 5), I get the result in the Python Shell.

But I have tried multiple suggestions available online to have it run from the Python Shell instead to which I fail (one error pasted below).

How can I run a python script from the python shell? The version of Python I am running is 3.7.3 and in Windows.

#!/usr/bin/python3

print(" Hello, world!")

exec(open(test.py).read())

Output:

Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    exec(open(test.py).read())
NameError: name 'test' is not defined

You don't need the last line for it to run. All you need is:

!/usr/bin/python3

print(" Hello, world!")

If you want to run it from another file, don't use exec. Instead, import it.

import test

You need to pass the "test.py" as a string (use quotes). test is not a known object.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM