Ai
1 Star 0 Fork 0

我在吃大西瓜呢/Python课程学习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ex5_2.py 559 Bytes
一键复制 编辑 原始数据 按行查看 历史
我在吃大西瓜呢 提交于 2020-04-01 16:05 +08:00 . second commit
'''
窗体中的画布示例:
绘制笑脸
'''
import tkinter
import tkinter.messagebox
win = tkinter.Tk()
win.title('小丑smile')
win.geometry('250x250')
can = tkinter.Canvas(win, height=250, width=250) #定义画布
io1 = can.create_oval(35,30,210,210, fill='yellow') #画一蓝色圆
io2 = can.create_oval(70,70,180,180, fill='green')
io3 = can.create_oval(65,70,185,170, outline='yellow', fill='yellow')
io4 = can.create_oval(80,100,110,130, fill='black')
io5 = can.create_oval(150,100,180,130, fill='purple')
can.pack()
win.mainloop()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wang_ming_er/python_course_learning.git
git@gitee.com:wang_ming_er/python_course_learning.git
wang_ming_er
python_course_learning
Python课程学习
master

搜索帮助