canvas帆布,畫布apple公司發展 frame框架, width, heig, src=source a. import tkinter as tk root = tk.Tk() root.title( '卓詠瀅教育學習網' ) root.geometry( '300x300' ) canvas = tk.Canvas(root, width = 300 , height = 300 ) canvas.create_oval( 160 , 120 , 200 , 160 , width = 8 , fill = '#f00' , outline = '#00f' ) canvas.create_rectangle( 10 , 10 , 50 , 100 ) canvas.create_rectangle( 60 , 10 , 110 , 100 , width = 8 ) canvas.create_rectangle( 120 , 10 , 170 , 100 , width = 8 , fill = '#f00' ) canvas.create_rectangle( 180 , 10 , 230 , 100 , width = 8 , fill = '#f00' , outline = '#00f' ) canvas.create_rectangle( 240 , 10 , 290 , 100 , width = 3 , fill = '#fff' , outline = '#0a0' , dash = ( 5 , 5 )) canvas.create_text( 40 , 110 , text = '卓詠瀅' , anchor = 'nw' , fill = '#0a0' , font = ( 'Arial' , 30 , 'bold' , 'italic' , 'underline' )) canvas.pack() root.mainloop()