1.
The code below is supposed to set the price to 1.5 if the weight is less than 2 and otherwise set it to 1.3. It then calculates the total by multiplying the weight by the price.
Fix 3 errors with indention in the code below so that it calculates the right total for a weight of 0.5 (the answer should be 0.75). You will not pass the tests yet.
Then change the weight to 3 and run the program again to pass the tests (the answer now should be 3.9).