Python3 Tkinter base Python3 tkinter base Canvas create_rectangle Draw a rectangle

Source: Internet
Author: User

Town Field Poem:
The Pure Heart sentiment wisdom language, does not have the world name and the benefit. Learn water under the hundred rivers, give up arrogant slow meaning.
Learn to have a small return to feed root, willing to cast a conscience blog. Sincere in this writing experience, willing to see the text to inspire.
——————————————————————————————————————————

EX1:
Code

From Tkinter Import *root=tk () W = Canvas (   root,   width=200,   height=200,   background= "white"  ) W.pack () Yellowline = w.create_line (0,100,200,100,fill= ' yellow ') redline=w.create_line (100,0,100,200,fill= ' Red ', dash= (bis)) Bulerect=w.create_rectangle (50,50,150,150,fill= ' Blue ') Mainloop ()



Result

EX2:

Code

From Tkinter Import *root=tk () W = Canvas (   root,   width=200,   height=200,   background= "white"  ) W.pack () Yellowline = w.create_line (0,100,200,100,fill= ' yellow ') redline=w.create_line (100,0,100,200,fill= ' Red ', dash= (bis)) Bulerect=w.create_rectangle (50,50,150,150,fill= ' Blue ') #使用coords方法移动yellowLine线, move to W.coords ( yellowline,0,25,100,100) #使用itemconfig设置一个对象的属性值w. Itemconfig (bulerect,fill= ' red ') #矩形框变红了 # Delete Readlinew.delete (redLine) Mainloop () using the Delete method

Result


——————————————————————————————————————————
The essence of the blog, in the technical part, more in the town yard a poem. Python version 3.5, System Windows7.
Python is a good language and deserves to be studied hard. I am following the small Turtle Video tutorial to learn, recommended.
I am a novice, so if the content of the blog can be improved, or even the wrong place, please leave a comment, I will try to correct, strive to achieve a conscience blog.
Note: This article is only as a scientific research study, if I inadvertently violated your rights and interests, please be sure to timely inform, I will make corrections.

Python3 Tkinter Base Python3 tkinter base Canvas create_rectangle draw a rectangle

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.