Add support for 51

This commit is contained in:
lomochka 2019-11-10 13:51:07 +02:00
parent a7aabeaf49
commit 56cf39030a
2 changed files with 826 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import decimal
python_file = open('my_first_calculator.py', 'w')
# The minimum and maximum numbers we can use
min_num = 0
max_num = 50
max_num = 51
nums = range(min_num, max_num+1)
signs = ['+', '-', '/', '*']
num_of_ifs = len(signs)*(max_num-min_num+1)**2

File diff suppressed because it is too large Load Diff