最近学Python,需要整一个顺手的IDE。 朋友力荐Atom , 于是下载了一个1.53版本的,这玩意儿是GitHub搞的,应该是开源的。

安装后又装了两个插件,一个是缩进的,一个是 运行程序的

首先打开setting

Python的IDE ====>>> Atom

然后搜索 autocomplete-python 这个是缩进用的,安装

再搜索 script 这个是运行Python用的

就是下面两货

Python的IDE ====>>> Atom


然后就可以写代码整python了整个例子

import turtle
window = turtle.Screen()
babbage = turtle.Turtle();
babbage.color("green", "yellow")
babbage.left(90)
babbage.forward(100)
babbage.right(90)
babbage.begin_fill()
babbage.circle(10)
babbage.end_fill()
#babbage.color("yellow", "yellow")
#babbage.begin_fill()
#babbage.circle(10)
#babbage.end_fill()
for i in range(1, 24):
    babbage.color("red", "red")
    babbage.left(15)
    babbage.forward(50)
    babbage.left(157)
    babbage.forward(50)
window.exitonclick()

结果

Python的IDE ====>>> Atom

搞定 。