This commit is contained in:
Andrii Vitiv 2019-11-10 14:06:24 +02:00 committed by GitHub
commit da549abbc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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