Python 練習實例63
python 練習實例63
題目:畫橢圓。
程序分析:使用 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()
以上實例輸出結果為:
