码迷,mamicode.com
首页 > 编程语言 > 详细

Python的IDE ====>>> Atom

时间:2016-03-01 19:14:56      阅读:512      评论:0      收藏:0      [点我收藏+]

标签:pythone ide   atom   

最近学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()

结果

技术分享

搞定 。

本文出自 “奔放的熊战士” 博客,请务必保留此出处http://xinnetcodingman.blog.51cto.com/9760903/1746363

Python的IDE ====>>> Atom

标签:pythone ide   atom   

原文地址:http://xinnetcodingman.blog.51cto.com/9760903/1746363

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!