From ba344176e86ce72669335a80844db3c213054a91 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Wed, 20 Sep 2017 21:38:45 -0400 Subject: [PATCH] Update python.md --- python.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python.md b/python.md index da7dc96..4668674 100644 --- a/python.md +++ b/python.md @@ -254,6 +254,10 @@ def add(value1, value2): print(add(1,3)) ``` +### ACTIVITIES + +Create a calculator program that continually asks a user what operations they want to perform, until the user says 'quit' + ## Create a class for an object You can use a `class` or blueprint for objects that you'll use