8-Б


Середовище програмування - https://create.withcode.uk/

from tkinter import*

w=Tk()

w.geometry('400x300')

n=Label(w,text="Ваше ім_я:")

n.place(x=80,y=70)

t=Entry()

t.place(x=200,y=70)

 

def click():

   n2=Label(text="зі святом, "+t.get())

   n2.place(x=100,y=250)

k=Button(bg='#00cc00', text='ПРИВІТАННЯ',command=click)

k.place(x=170,y=150)

w.mainloop()





2 zavdannya
from tkinter import *
window = Tk()
window.title('Alien')
c = Canvas(window, height=300, width=400)
c.pack()
body = c.create_oval(100, 150, 300, 250, fill='green')
eye = c.create_oval(170, 70, 230, 130, fill='white')
eyeball = c.create_oval(190, 90, 210, 110, fill='black')
mouth = c.create_oval(150, 220, 250, 240, fill='red')
neck = c.create_line(200, 150, 200, 130)
hat = c.create_polygon(180, 75, 220, 75, 200, 20, fill='blue')






1 комментарий: