Python的IDE ====>>> Atom
程序员文章站
2022-07-14 12:45:30
...
最近学Python,需要整一个顺手的IDE。 朋友力荐Atom , 于是下载了一个1.53版本的,这玩意儿是GitHub搞的,应该是开源的。
安装后又装了两个插件,一个是缩进的,一个是 运行程序的
首先打开setting
然后搜索 autocomplete-python 这个是缩进用的,安装
再搜索 script 这个是运行Python用的
就是下面两货
然后就可以写代码整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()
结果
搞定 。
转载于:https://blog.51cto.com/xinnetcodingman/1746363
推荐阅读