如何让 Atom 编辑器在运行脚本时显示终端和输出?

如何让 Atom 编辑器在运行脚本时显示终端和输出?

我添加了一个运行良好的脚本包。

运行 Python 脚本后,我在哪里可以看到脚本的输出?我已将屏幕分开,看到的只有以下内容:

在此处输入图片描述

这是脚本:

from bs4 import BeautifulSoup
import urllib

url = urllib.urlopen('http://meinparlament.diepresse.com/')
content = url.read()
soup = BeautifulSoup(content, 'lxml')

table = soup.findAll('div',attrs={"class":"content-question"})
for x in table:
    print x.find('p').text

# Another way to retrieve tables:
# table = soup.select('div[class="content-question"]')

我该如何安排 Atom 以便我可以看到

  • 剧本
  • 命令行
  • Python 脚本的输出?

在此处输入图片描述

相关内容