Печать

df

ths

from tkinter import *

side = 17; size = 47                                        # Клеток, пикселей

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)

mainloop()

Лист. 1.

from tkinter import *

side = 17; size = 47                                        # Клеток, пикселей

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)

Cnv.create_rectangle(0, 0, size, size)

mainloop()

Лист. 2.

from tkinter import *

side = 17; size = 47                                        # Клеток, пикселей

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)

Cnv.create_rectangle(0, 0, size, size)
Cnv.create_rectangle(size, 0, 2*size, size)
Cnv.create_rectangle(2*size, 0, 3*size, size)

mainloop()

Лист. 3.

from tkinter import *

side = 17; size = 47                                        # Клеток, пикселей

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)

Cnv.create_rectangle(0*size,  0, (0+1)*size,  size)
Cnv.create_rectangle(1*size,  0, (1+1)*size,  size)
Cnv.create_rectangle(2*size,  0, (2+1)*size,  size)
Cnv.create_rectangle(16*size, 0, (16+1)*size, size)

mainloop()

Лист. 4.

from tkinter import *

side = 17; size = 47                                        # Клеток, пикселей

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)

for x in range(side):
    Cnv.create_rectangle(x*size, 0, (x+1)*size, size)

mainloop()

Лист. 5.

from tkinter import *

side = 17; size = 47                                        # Клеток, пикселей

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)

for y in range(side):
    for x in range(side):
        Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size)

mainloop()

Лист. 6.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)

for y in range(side):
    for x in range(side):
        Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size, fill=choice(colorschemes))

mainloop()

Лист. 7.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size, fill=choice(colorschemes))


Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
paint()

mainloop()

Лист. 8.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB


def play(event):
    print(event)


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size, fill=choice(colorschemes))


Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)

paint()

mainloop()

Лист. 9.

<ButtonPress event num=1 x=364 y=240>
<ButtonPress event num=1 x=34 y=33>
<ButtonPress event num=1 x=770 y=783>
<ButtonPress event num=1 x=31 y=407>
<ButtonPress event num=1 x=774 y=395>

Лист. 10.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB


def play(event):
    n = 0
    print(event.x, event.y, n)


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size, fill=choice(colorschemes))


Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)

paint()

mainloop()

Лист.  11.

Задание 1.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB


def play(event):
    n = event.x // size + (event.y // size) * side
    print(event.x, event.y, n)


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size, fill=choice(colorschemes))


Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)

paint()

mainloop()

Лист. 12.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB


def play(event):
    n = event.x // size + (event.y // size) * side
    if n == 0:
        paint()


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size, fill=choice(colorschemes))


Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)

paint()

mainloop()

Лист. 13.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB
playground = []


def play(event):
    n = event.x // size + (event.y // size) * side
    if n == 0:
        newgame()
        print(playground)
        paint()


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size,
                                 fill=choice(colorschemes))


def newgame():
    global playground
    playground.clear()
    playground.append(choice(range(6)))
    playground.append(choice(range(6)))
    playground.append(choice(range(6)))
    playground.append(choice(range(6)))
    playground.append(choice(range(6)))
    
    

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)
newgame()
paint()

mainloop()

Лист. 14.

[5, 0, 5, 0, 0]

Лист. 15.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB
playground = []


def play(event):
    n = event.x // size + (event.y // size) * side
    if n == 0:
        newgame()
        print(playground)
        paint()


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size,
                                 fill=choice(colorschemes))


def newgame():
    global playground
    playground.clear()
    for i in range(side*side):
        playground.append(choice(range(len(colorschemes))))
    
    

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)
newgame()
paint()

mainloop()

Лист. 16.

[5, 2, 3, 0, 2, 0, 1, 4, 2, 3, 4, 3, 3, 5, 0, 0, 3, 5, 1, 0, 5, 3, 3, 4, 2, 2, 3, 4, 2, 4, 5, 4, 0, 4, 3, 5, 1, 5, 5, 0, 1, 3, 5, 4, 0, 2, 1, 0, 5, 3, 5, 2, 5, 2, 4, 5, 3, 4, 1, 0, 4, 5, 5, 5, 3, 3, 2, 0, 1, 5, 4, 2, 5, 2, 1, 3, 3, 0, 5, 2, 5, 5, 3, 1, 1, 2, 0, 1, 0, 5, 5, 0, 5, 3, 0, 2, 5, 3, 0, 2, 1, 2, 5, 1, 1, 0, 3, 4, 4, 3, 3, 0, 1, 3, 1, 5, 2, 5, 3, 5, 1, 5, 5, 5, 0, 1, 0, 5, 3, 5, 2, 4, 3, 5, 1, 2, 1, 0, 3, 0, 1, 4, 4, 5, 3, 4, 5, 5, 4, 3, 0, 0, 4, 1, 5, 3, 4, 2, 0, 0, 4, 3, 2, 2, 5, 3, 2, 1, 3, 2, 0, 5, 1, 4, 4, 4, 0, 5, 4, 4, 5, 5, 5, 5, 2, 3, 5, 3, 0, 2, 1, 1, 0, 5, 2, 0, 3, 4, 0, 4, 2, 2, 3, 3, 5, 1, 2, 0, 5, 4, 5, 1, 1, 4, 4, 2, 3, 2, 4, 5, 5, 2, 1, 2, 1, 1, 2, 3, 5, 3, 4, 4, 4, 0, 0, 5, 5, 2, 1, 2, 1, 1, 2, 2, 1, 3, 3, 0, 1, 4, 0, 2, 3, 2, 1, 3, 1, 1, 2, 1, 2, 3, 5, 1, 2, 4, 0, 1, 1, 2, 4, 5, 1, 3, 1, 2, 0, 0, 0, 0, 2, 1, 3, 3, 2, 4, 1, 3, 1]

Лист. 17.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB
playground = []


def play(event):
    n = event.x // size + (event.y // size) * side
    if n == 0:
        newgame()
        print(playground)
        paint()


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size,
                                 fill=choice(colorschemes))


def newgame():
    global playground
    playground = [choice(range(len(colorschemes))) for i in range(side*side)]
    

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)
newgame()
paint()

mainloop()

Лист. 18.

[0, 2, 5, 4, 3, 2, 5, 5, 5, 5, 5, 4, 0, 4, 5, 0, 5, 4, 2, 1, 5, 0, 4, 5, 1, 5, 2, 4, 1, 1, 0, 5, 2, 0, 2, 3, 5, 4, 4, 1, 2, 5, 2, 0, 2, 5, 4, 2, 1, 5, 5, 3, 3, 0, 3, 5, 2, 2, 3, 5, 1, 1, 4, 4, 2, 0, 4, 1, 4, 3, 1, 3, 1, 5, 1, 4, 0, 0, 2, 1, 2, 2, 4, 2, 5, 4, 2, 5, 5, 5, 4, 3, 2, 0, 2, 1, 0, 1, 5, 5, 3, 3, 2, 0, 0, 2, 1, 4, 2, 4, 5, 2, 4, 1, 3, 4, 4, 4, 5, 3, 5, 3, 3, 0, 0, 0, 0, 5, 2, 1, 0, 0, 0, 2, 1, 5, 0, 1, 0, 4, 1, 4, 0, 0, 5, 1, 2, 1, 2, 4, 1, 4, 5, 0, 4, 1, 2, 3, 3, 5, 2, 4, 5, 3, 1, 0, 0, 2, 4, 3, 5, 3, 1, 1, 4, 0, 4, 0, 2, 2, 5, 0, 1, 4, 5, 0, 0, 4, 4, 1, 4, 1, 1, 5, 3, 2, 1, 1, 0, 0, 5, 3, 4, 5, 5, 5, 5, 1, 2, 0, 0, 0, 2, 1, 3, 0, 0, 5, 3, 5, 3, 2, 2, 3, 2, 2, 0, 0, 3, 0, 2, 1, 3, 4, 0, 1, 5, 2, 2, 5, 4, 5, 3, 3, 5, 5, 2, 5, 2, 4, 5, 3, 1, 4, 4, 2, 3, 2, 3, 0, 0, 5, 5, 2, 3, 2, 1, 0, 4, 2, 3, 0, 3, 2, 4, 2, 4, 0, 1, 0, 4, 0, 1, 5, 5, 5, 4, 4, 4]

Лист. 19.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB
playground = []


def play(event):
    n = event.x // size + (event.y // size) * side
    if n == 0:
        newgame()
        paint()


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size,
                                 fill=colorschemes[playground[y*side+x]])


def newgame():
    global playground
    playground = [choice(range(len(colorschemes))) for i in range(side*side)]
    

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)
newgame()
paint()

mainloop()

Лист. 20.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB
playground = []


def play(event):
    n = event.x // size + (event.y // size) * side
    if n == 0:
        newgame()
    else:
        if playground[0] == playground[1]:
            playground[1] = playground[n]
        if playground[0] == playground[17]:
            playground[17] = playground[n]
        playground[0] = playground[n]
    paint()


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size,
                                 fill=colorschemes[playground[y*side+x]])


def newgame():
    global playground
    playground = [choice(range(len(colorschemes))) for i in range(side*side)]
    

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)
newgame()
paint()

mainloop()

Лист. 21.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB
playground = []


def play(event):
    n = event.x // size + (event.y // size) * side
    if n == 0:
        newgame()
    elif playground[n] != playground[0]:
        take_territory(0, playground[n], playground[0])
    paint()


def take_territory(n, nextcolor, oldcolor):
    if playground[n] == oldcolor:
        playground[n] = nextcolor


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size,
                                 fill=colorschemes[playground[y*side+x]])


def newgame():
    global playground
    playground = [choice(range(len(colorschemes))) for i in range(side*side)]
    

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)
newgame()
paint()

mainloop()

Лист. 22.

from tkinter import *
from random import choice

side = 17; size = 47                                        # Клеток, пикселей
colorschemes = ('#f00','#0f0','#00f','#ff0','#d7f','#988')  # RGB
playground = []


def play(event):
    n = event.x // size + (event.y // size) * side
    if n == 0:
        newgame()
    elif playground[n] != playground[0]:
        take_territory(0, playground[n], playground[0])
    paint()


def take_territory(n, nextcolor, oldcolor):
    if n < 0 or n >= side*side:
        return
    if playground[n] == oldcolor:
        playground[n] = nextcolor
        take_territory(n-1, nextcolor, oldcolor)
        take_territory(n+1, nextcolor, oldcolor)
        take_territory(n-side, nextcolor, oldcolor)
        take_territory(n+side, nextcolor, oldcolor)


def paint():
    for y in range(side):
        for x in range(side):
            Cnv.create_rectangle(x*size, y*size, (x+1)*size, (y+1)*size,
                                 fill=colorschemes[playground[y*side+x]])


def newgame():
    global playground
    playground = [choice(range(len(colorschemes))) for i in range(side*side)]
    

Cnv = Canvas(width=side*size, height=side*size)
Cnv.pack(expand=YES, fill=BOTH)
Cnv.bind('<Button-1>', play)
newgame()
paint()

mainloop()

Лист.