Python@TW: 會眾| IRC| Planet| 郵件列表| 聯絡我們
修訂版 6 和 47 的差異如下: (間隔 41 版)
2013-03-16 12:48:51 修訂第 6 版
大小: 1090
編輯者: keitheis
說明: Added Editra
2018-01-07 12:11:42 修訂第 47 版
大小: 157
編輯者: host-158
說明:
這個顏色代表刪除的 這個顏色代表增加的
行號 1: 行號 1:
== 跨平台 Editors 參考 == from turtle import*
行號 3: 行號 3:
 * [[http://www.sublimetext.com/|Sublime Text|target="_blank"]]: ''"a sophisticated text editor for code, markup and prose"''
 * [[http://ninja-ide.org/|NINJA IDE|target="_blank"]]: ''"Ninja-IDE Is Not Just Another IDE"''
 * [[http://wingware.com/|Wingware|target="_blank"]]: ''"IDE designed specifically for the Python programming language"''
 * [[http://editra.org/|Editra|target="_blank"]]: ''"focuses on creating an easy to use interface and features that aid in code development"''
 * Emacs, Vim: ''"You knew it when you knew it"''

== 各平台的編輯器 ==

Windows: [[http://ez2learn.com/index.php/python-tutorials/python-basic-tutorials/158-python|IDLE|target="_blank"]], [[http://notepad-plus-plus.org/|Notepad++|target="_blank"]]

Mac: [[http://www.barebones.com/products/textwrangler/|TextWrangler]], [[http://macromates.com/|Textmate (商業軟體)|target="_blank"]]

Linux: [[http://projects.gnome.org/gedit|gedit|target="_blank"]], kate

更多:[[http://wiki.python.org/moin/PythonEditors|Python Editors|target="_blank"]]
def square(x):
  for i in range(4):
    forward(x)
    left(90)
    x=x+20
for j in range(4):
  square(60)
  left(90)
done()

from turtle import*

def square(x):

  • for i in range(4):
    • forward(x) left(90) x=x+20

for j in range(4):

  • square(60) left(90)

done()

Python/IDE或編輯器 (上次是 61-223-106-232 在 2018-02-11 21:34:51 編輯的)