Python Calculator Help?
-
I'm creating a calculator and i ran into a problem. When the users enters an expression and hits equal. If they click on a number right after that, i want to delete the answer to the previous expression and insert the number. And let's say they want to do an operation on that answer, then they'll click on an operation and the entry text won't be deleted,only when they click a number. Please help.
-
Answer:
I don't know how exactly you have your program designed, but I would assume you could just create a sentinel variable (some sort of variable to keep track of the state of the program) to indicate whether equal has been pressed. Basic logic (used underscores to represent tabs so it's readable): equalWasPressed = False if equal is pressed: __perform calculation __equalWasPressed = True if operatorWasPressed: __if equalWasPressed: ____use previous result in operation __elif numberHasBeenEntered: ___use number that was entered __else: ____invalid syntax if numberWasPressed: __if equalWasPressed: ____overwrite old result with new number
Skyler at Yahoo! Answers Visit the source
Related Q & A:
- How to use the percentage button on a calculator?Best solution by percentagecalculator.co
- How do you put games on your TI-84 calculator?Best solution by Yahoo! Answers
- How do I get to the games on my TI-83 calculator?Best solution by Yahoo! Answers
- How do you do percentages on a calculator?Best solution by Yahoo! Answers
- Where can I get a cheap ti-83 graphing calculator?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.