Commit 51b33ca4 by BellCodeEditor

save project

parent 9ae9df9b
Showing with 12 additions and 0 deletions
1.png

191 KB

import tkinter
from tkinter import *
root = tkinter.Tk()
root.geometry('400x400')
a = tkinter.Canvas(root,width = 300,height = 300,bg= 'lightgreen')
a.place(x = 50,y = 50)
b = tkinter.Canvas(root,width = 200,height = 200,bg= 'lightblue')
b.place(x =100,y = 100)
c = tkinter.Canvas(root,width = 100,height = 100,bg= 'red')
c.place(x =150,y = 150)
root.mainloop()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment