Book Image

Python Projects for Kids

By : Jessica Ingrassellino
Book Image

Python Projects for Kids

By: Jessica Ingrassellino

Overview of this book

Kids are always the most fast-paced and enthusiastic learners, and are naturally willing to build stuff that looks like magic at the end (when it works!). Programming can be one such magic. Being able to write a program that works helps them feel they've really achieved something. Kids today are very tech-savvy and cannot wait to enter the fast-paced digital world. Because Python is one of the most popular languages and has a syntax that is quite simple to understand, even kids are eager to use it as a stepping stone to learning programming languages. This book will cover projects that are simple and fun, and teach kids how to write Python code that works. The book will teach the basics of Python programming, installation, and so on and then will move on to projects. A total of three projects, with each and every step explained carefully, without any assumption of previous experience.
Table of Contents (18 chapters)
Python Projects for Kids
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

New functions – subtraction, multiplication, and division


Now that we have created an addition() function that accepts data from the user and converts it into numbers, we are ready to create functions for subtraction, multiplication, and division.

If you are coming back to this after a break, perform the following steps:

  1. Open your Python shell so that you can test your code as you write.

  2. Next, open your text editor (jEdit in Mac/Linux and Notepad ++ in Windows).

  3. Have both windows open on your desktop as you program.

  4. When you successfully write and test a line or a few lines of code in the Python shell, copy the lines into your text editor and then Save Your Work to the first_calc.py file that you created earlier in this chapter.

Tip

Save your work early and as often as you can! Avoid being upset by accidentally erasing your code!

Subtraction

For the next part of our calculator, we will make our subtraction function. We will follow the same prompts as we used for the addition function to create a...