打印

Python 练习实例63

[复制链接]
268|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
题目:画椭圆。 
程序分析:使用 Tkinter。
程序源代码:
#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == '__main__':
    from Tkinter import *
    x = 360
    y = 160
    top = y - 30
    bottom = y - 30
   
    canvas = Canvas(width = 400,height = 600,bg = 'white')
    for i in range(20):
        canvas.create_oval(250 - top,250 - bottom,250 + top,250 + bottom)
        top -= 5
        bottom += 5
    canvas.pack()
    mainloop()
以上实例输出结果为:

使用特权

评论回复

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

1592

主题

5837

帖子

29

粉丝