Python tk sorotan
from tkinter import *
root = Tk()
canvas_1 = Canvas(root, width=200, height=200, bg='red', highlightthickness=0)
canvas_1.grid(row=0, column=0)
root.mainloop()
Thoughtless Tern