Oct-10-2019, 08:01 PM
I'll show it with some code:
My goal is to make it actually print the correct answer (for example if the user input 5.70 as Var1 and 3.90 as Var2, the correct answer would be 1.80)as I am creating a script to solve simultaneous equations.
Please let me know where I went wrong or how to make it print the correct answer if you know, thanks
Var1=str(input("What is Var1?") #For example user inputs 8.10 Var2=str(input("What is Var2?") #For example user inputs 6.80 Var1=float(Var1) Var2=float(Var2) Var3=Var1-Var2 print(Var3) #The program then prints 1.2999999999999998So the problem is it prints 1.2999999999999998 which is incorrect, as the correct answer is 1.30
My goal is to make it actually print the correct answer (for example if the user input 5.70 as Var1 and 3.90 as Var2, the correct answer would be 1.80)as I am creating a script to solve simultaneous equations.
Please let me know where I went wrong or how to make it print the correct answer if you know, thanks
