Situatie
Solutie
If you use a handheld calculator, you may have noticed something frustrating if you have a basic model: It’s hard to recall previous results when using them in new calculations.
You can save numbers to memory for later recall on some calculators, but you have to know how it works. And that means reading a manual. You did save the manual, didn’t you? Of course, you can usually find the manual online. That may be good enough for TI and Casio users, but many of the hardware calculators, or at least the ones you can buy today, come from generic makers. Good luck finding the instructions for them!
Calculator apps on your phone or computer aren’t much better. The main problem with these programs is that they try to make themselves look and work like handheld calculators. Among user interface designers, this is known as “skeuomorphism.” Software calculators feel awkward to use because you have to click buttons manually.
If you’re taking math or science courses, you’ll most likely only be allowed to use a handheld calculator on exams. When you’re on your own, you’re better off using something like Python.
Python’s Interactive Mode is Easy to use
While Python is meant for programming, it can solve a lot of the problems with handheld and software calculators.
Once you’ve installed Python and called up the interpreter from your system’s menu or typing python at the command line, you can use all of the standard arithmetic functions in Python just by typing them and pressing enter to execute at the prompt:
2 + 2
5 * 3
45 - 30
720 / 5
Leave A Comment?