File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 19
19
multiplication = float (number1 )* float (number2 )
20
20
division = float (number1 )/ float (number2 )
21
21
Percentage = float (number1 )% float (number2 )
22
- if process == "collect " :
22
+ if process == "Addition " :
23
23
print ("{0} + {1} = {2}" . format (number1 ,number2 ,addition ))
24
- elif process == "Extraction " :
24
+ elif process == "Subraction " :
25
25
print ("{0} - {1} = {2}" . format (number1 ,number2 ,subraction ))
26
- elif process == "Impact " :
26
+ elif process == "Multiplication " :
27
27
print ("{0} * {1} = {2}" . format (number1 ,number2 ,multiplication ))
28
- elif process == "Divide " :
28
+ elif process == "Division " :
29
29
print ("{0} / {1} = {2}" . format (number1 ,number2 ,division ))
30
30
elif process == "Percentage" :
31
31
print ("{0} % {1} = {2}" . format (number1 ,number2 ,Percentage ))
47
47
elif command == "licence" :
48
48
print ("This Software is protected under the GPL2 license" )
49
49
else :
50
- print ("Invalid Command!" )
50
+ print ("Invalid Command!" )
You can’t perform that action at this time.
0 commit comments