Home
Categories
WIKI
Topic
User
LANGUAGE:
中文
English
Python tutle 模块 Logo 语言绘图
Apps Section
836
views ·
0
replies ·
To
floor
Go
海天鹰
deepin
2018-05-04 20:06
Author
本帖最后由 sonichy 于 2018-5-4 12:21 编辑
依赖 Tkinter: sudo apt install python-tk
语法参考:
https://docs.python.org/2/library/turtle.html
示例:
import turtle
for i in range(60):
turtle.color("red")
turtle.fd(300)
turtle.lt(101)
turtle.mainloop()
运行:python logo.py
惊不惊喜,赶快来画图把!
注意:关闭图形窗口正常结束,从终端结束会引起鼠标失灵。
Reply
Like 0
Favorite
View the author
All Replies
No replies yet
Please
sign
in first
Featured Collection
Change
[Tutorial] deepin25 WSL Offline Installation Guide
UOS AI 2.8 Released! Three New Intelligent Agents & Major Evolution
Solid Q&A | deepin 25 Common Questions – The Immutable System Edition
New Thread
Popular Ranking
Change
How to fix grub boot menu that has disappeared?
Looking Deepin ci 25.2.0 Developer/Unstable repositories
Popular Events
More
依赖 Tkinter: sudo apt install python-tk
语法参考:https://docs.python.org/2/library/turtle.html
示例:
import turtle
for i in range(60):
turtle.color("red")
turtle.fd(300)
turtle.lt(101)
turtle.mainloop()
运行:python logo.py
惊不惊喜,赶快来画图把!
注意:关闭图形窗口正常结束,从终端结束会引起鼠标失灵。