• Saturday, February 27th:
    Assessment 2 has been graded, we've posted grades to Gradescope as usual. We're using the same square-rooting scheme as we did for Assessment 1, and you should be able to intuit your grade from the short python run presented below: >>> for raw in range(22, 15, -1): ... percentage = raw * 100 / 22 ... root = percentage ** 0.5 ... score = 10 * root ... print("Your raw score of {0:d} out of 22 is really a {1:.2f}".format(raw, score)) ... Your raw score of 22 out of 22 is really a 100.00 Your raw score of 21 out of 22 is really a 97.70 Your raw score of 20 out of 22 is really a 95.35 Your raw score of 19 out of 22 is really a 92.93 Your raw score of 18 out of 22 is really a 90.45 Your raw score of 17 out of 22 is really a 87.90 Your raw score of 16 out of 22 is really a 85.22 .. and so forth >>>