gpt4 book ai didi

python - 创建并运行 python 文件

转载 作者:太空宇宙 更新时间:2023-11-03 13:30:13 26 4
gpt4 key购买 nike

sample.py 是现有的 python 文件。

运行该 python 文件的命令:

>>> python sample.py

错误信息:

SyntaxError: invalid syntax

如何在 Python 2.7.14 shell 中创建和运行 python 文件。

最佳答案

这可以使用 exec 函数来完成。假设 sample.py 有一个 print "hello world" 语句:

示例

>>> file = open('sample.py','r')
>>> exec(file.read())
hello world

您可以在此处阅读有关 exec() 以及如何使用它的更多信息:https://docs.python.org/3/library/functions.html#exec

关于python - 创建并运行 python 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48251646/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com