Sorry, no such media found
  • Addition
  • Subtraction
  • Multiplication
  • Division

Hey kiddo! Do you like math? Or at least, do you enjoy playing with numbers, adding, subtracting, multiplying, dividing, or even making a number bigger by raising it to some power? Well, if you do, you’re in for a treat! Today, we’re going to talk about a special project we have done. This project is like a magic box, which takes in a simple math problem, and then it calculates the answer for you, just like magic! This is a Python program that works as a calculator. But don’t worry, you don’t have to know what Python is right now. It’s a type of computer language that tells the computer what to do.  

So, let’s dive into our magical Python Calculator. At first, it will welcome you with a friendly menu, like how you see menus at your favorite restaurant. This menu doesn’t have burgers or pizzas though. Instead, it tells you what this calculator can do. It says it can add (+), subtract (-), multiply (*), divide (/), and even perform positive exponentiation (^). It also mentions some rules – like it doesn’t support brackets or fractional answers, and it can only deal with positive powers. 

Hints