Latest web development tutorials

파이썬은 연습 (63)을 포함한다

파이썬 100 리 파이썬 100 리

제목 : 타원형 타원을 그렸다.

프로그램 분석 : 없음.

소스 코드 :

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

위 예제의 출력은 다음과 같습니다

파이썬 100 리 파이썬 100 리