如何从IDLE交互式shell运行python脚本?

前端之家收集整理的这篇文章主要介绍了如何从IDLE交互式shell运行python脚本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在IDLE交互式shell中运行python脚本?

以下引发错误

>>> python helloworld.py
SyntaxError: invalid Syntax
内置功能execfile
execfile('helloworld.py')

自2.6:popen后弃用

import os
os.popen('python helloworld.py') # Just run the program
os.popen('python helloworld.py').read() # Also gets you the stdout

预先使用:subprocess

import subprocess
subprocess.call(['python','helloworld.py']) # Just run the program
subprocess.check_output(['python','helloworld.py']) # Also gets you the stdout

阅读文档的详细信息:-)

原文链接:https://www.f2er.com/bash/391259.html

猜你在找的Bash相关文章