黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python 練習(xí)實(shí)例63

python 練習(xí)實(shí)例63

python 編程100例python 編程100例

題目:畫橢圓?!?/p>

程序分析:使用 tkinter。

程序源代碼:

實(shí)例:

#!/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()

以上實(shí)例輸出結(jié)果為:

python 編程100例python 編程100例

下一節(jié):python 練習(xí)實(shí)例64

python 編程100例

相關(guān)文章