Python for Kids: A Playful Introduction to Programming by Jason R. Briggs

Python for Kids: A Playful Introduction to Programming by Jason R. Briggs

Author:Jason R. Briggs
Language: eng
Format: mobi, epub
Tags: Web, Juvenile Nonfiction, Open Source, Programming Languages, Python, Computers, Programming, General, JUVENILE NONFICTION / Computers / Programming, Web Programming
ISBN: 9781593274948
Publisher: No Starch Press
Published: 2012-12-19T00:00:00+00:00


We can add another irregular polygon (a shape with uneven angles or sides) using this code:

canvas.create_polygon(200, 10, 240, 30, 120, 100, 140, 120, fill="", outline="black")

This code begins with the coordinates (200, 10), moves to (240, 30), then to (120, 100), and finally to (100, 140). tkinter automatically joins the line back to the first coordinate. And here’s the result of running the code:

Displaying Text

In addition to drawing shapes, you can also write on the canvas using create_text. This function takes only two coordinates (the x and y positions of the text), along with a named parameter for the text to display. In the following code, we create our canvas as before and then display a sentence positioned at the coordinates (150, 100). Save this code as text.py.



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.