my_first_calculator.py
Go to file
AceLewis a7aabeaf49 Merge branch 'master' of https://github.com/AceLewis/my_first_calculator.py 2016-05-15 22:10:19 +01:00
.gitattributes :neckbeard: Added .gitattributes & .gitignore files 2016-05-05 22:42:39 +01:00
.gitignore :neckbeard: Added .gitattributes & .gitignore files 2016-05-05 22:42:39 +01:00
README.md Recommended from future import division 2016-05-15 22:09:31 +01:00
generator.py fix num_of_ifs calculation 2016-05-14 17:00:29 +03:00
my_first_calculator.py Fixed 0/0 being Inf not undefined 2016-05-10 16:23:54 +01:00
my_first_calculator_0_to_1000.rar Updated the archived 0 to 100 2016-05-15 22:08:25 +01:00
setup.py Add setup.py 2016-05-06 22:34:04 -07:00

my_first_calculator.py

I initially saw Al Sweigart's my_first_tic_tac_toe and was amused. I then saw the image shown below posted on Reddit. Assuming that the image was not made up for some fake internet points and also assuming that their friend only used addition, subtraction, multiplication and division then the number of numbers that they would have if statements for would be...

sqrt(9500/4) = 48.7339...
sqrt(9500/4) ≈ 50 

So to be true to the "real" story I have only gone from 0-50 however higher numbers can easily be generated too however my Python crashes with larger numbers. I generated one that was 0-1000 and it took up 317 MB of space on my hard drive but was only 20MB after I compressed it to a .rar so I have also attached it.

The generator will not work in Python 2 however it can probably be patched to work by doing from __future__ import division

The image