I made a simple calculator a while ago where you would have 2 numbers and all the basic operators and it would add them together. I wanted to be able to add more than 2 numbers, but I didn't want to be confined to a certain number of variables, so I tried using functions for the first time. You can see my code down there, and when you run it there are no syntax errors, but I don't know what's wrong with it. I defined calculator then ran it. Anyone know what's wrong?
Help with Functions
I made a simple calculator a while ago where you would have 2 numbers and all the basic operators and it would add them together. I wanted to be able to add more than 2 numbers, but I didn't want to be confined to a certain number of variables, so I tried using functions for the first time. You can see my code down there, and when you run it there are no syntax errors, but I don't know what's wrong with it. I defined calculator then ran it. Anyone know what's wrong?
Hi!
You miss the necessary parenthesis (
()
) at the end of theCalculator
function calling in Python!To call the function, place a pair of parenthesis of every single time you call it.