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 1919 multiplication = float (number1 )* float (number2 )
2020 division = float (number1 )/ float (number2 )
2121 Percentage = float (number1 )% float (number2 )
22- if process == "collect " :
22+ if process == "Addition " :
2323 print ("{0} + {1} = {2}" . format (number1 ,number2 ,addition ))
24- elif process == "Extraction " :
24+ elif process == "Subraction " :
2525 print ("{0} - {1} = {2}" . format (number1 ,number2 ,subraction ))
26- elif process == "Impact " :
26+ elif process == "Multiplication " :
2727 print ("{0} * {1} = {2}" . format (number1 ,number2 ,multiplication ))
28- elif process == "Divide " :
28+ elif process == "Division " :
2929 print ("{0} / {1} = {2}" . format (number1 ,number2 ,division ))
3030 elif process == "Percentage" :
3131 print ("{0} % {1} = {2}" . format (number1 ,number2 ,Percentage ))
4747elif command == "licence" :
4848 print ("This Software is protected under the GPL2 license" )
4949else :
50- print ("Invalid Command!" )
50+ print ("Invalid Command!" )
You can’t perform that action at this time.
0 commit comments