Ответ:
from tkinter import *
root = Tk()
root.title("Вход в систему")
root.geometry("300x100")
canvas = Canvas(root, width=300, height=100, bg="#696969")
label_w = Label (root, text="Password:", bg="#696969")
label_w.place(x=25, y=50)
entry_w = Entry(root)
entry_w.place(x=100, y=50)
canvas.pack()
root.mainloop()
Объяснение: Используй tkinter
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
from tkinter import *
root = Tk()
root.title("Вход в систему")
root.geometry("300x100")
canvas = Canvas(root, width=300, height=100, bg="#696969")
label_w = Label (root, text="Password:", bg="#696969")
label_w.place(x=25, y=50)
entry_w = Entry(root)
entry_w.place(x=100, y=50)
canvas.pack()
root.mainloop()
Объяснение: Используй tkinter