@@ -19,15 +19,15 @@ if command=="calc":
1919 Divide = float (number1 )/ float (number2 )
2020 Percentage = float (number1 )% float (number2 )
2121 if process == "collect" :
22- print ("SONUC=" , format (collect ))
22+ print ("{0} + {1} = {2}" . format (number1 , number2 , collect ))
2323 if process == "Extraction" :
24- print ("SONUC=" , format (Extraction ))
24+ print ("{0} - {1} = {2}" . format (number1 , number2 , Extraction ))
2525 if process == "Impact" :
26- print ("SONUC=" , format (Impact ))
26+ print ("{0} * {1} = {2}" . format (number1 , number2 , Impact ))
2727 if process == "Divide" :
28- print ("SONUC=" , format (Divide ))
28+ print ("{0} / {1} = {2}" . format (number1 , number2 , Divide ))
2929 if process == "Percentage" :
30- print ("SONUC=" , format (Percentage ))
30+ print ("{0} % {1} = {2}" . format (number1 , number2 , Percentage ))
3131if command == "about" :
3232 print (about )
3333if command == "exit" :
@@ -40,4 +40,4 @@ if command=="git-address":
4040if command == "web-site" :
4141 print ("linuxuserslinuxmint.github.io" )
4242if command == "ver" :
43- print ("Version: 0.1.2 (Last Updated September 4 , 2023 , 22:21 )" )
43+ print ("Version: 0.1.5 (Last Updated September 5 , 2023 , 21:59 )" )
0 commit comments