Latest web development tutorials

Python include esercizi 56

Python 100 Li Python 100 Li

Titolo: disegno, scuola di pittura con il cerchio rotondo.

Analisi del programma: Nessuno.

Source Code:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == '__main__':
    from Tkinter import *

    canvas = Canvas(width=800, height=600, bg='yellow')  
    canvas.pack(expand=YES, fill=BOTH)                
    k = 1
    j = 1
    for i in range(0,26):
        canvas.create_oval(310 - k,250 - k,310 + k,250 + k, width=1)
        k += j
        j += 0.3

    mainloop()

L'output sopra esempio è:

Python 100 Li Python 100 Li