FAQ: Learn Python - Exam Statistics - The Variance

Community%20FAQs%20on%20Codecademy%20Python%20Exercises

This community-built FAQ covers the “The Variance” exercise in Codecademy’s lessons on Python.

FAQs for the Codecademy Python exercise The Variance:

Join the Discussion. We Want to Hear From You!

Have a new question or can answer someone else’s? Reply (reply) to an existing thread!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources about Python in general? Go here!

Want to take the conversation in a totally different direction? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account, billing, Pro, or Pro Intensive? Reach out to our support team!

None of the above? Find out where to ask other questions here!

Not seeing your question? It may still have been asked before – try (search) in the top-right of this page. Still can’t find it? Ask it below by hitting the reply button below this post (reply).

Other FAQs

The following are links to additional questions that our community has asked about this exercise:

  • This list will contain other frequently asked questions that aren’t quite as popular as the ones above.
  • Currently there have not been enough questions asked and answered about this exercise to populate this FAQ section.
  • This FAQ is built and maintained by you, the Codecademy community – help yourself and other learners like you by contributing!

Hi, I’ve got 2 slightly different versions of the code here, Example 1 works, Example 2 gives a different number. Any help why this is would be much appreciated! (again, I’m sorry the indents don’t show up)
Thank you!
Alex

def grades_variance(scores):
average = grades_average(scores)
variance = 0
for score in scores:
variance += (average - score) ** 2
return variance / len(scores)

print grades_variance(grades)

def grades_variance(scores):
average = grades_average(scores)
variance = 0
for score in scores:
variance += (average - score) ** 2
variance = variance / len(scores)
return variance

print grades_variance(grades)

Hi Alex,

I tried the below code, although I’m not if it’s the best way!

def grades_variance(scores):
>>average = grades_average(scores)
>>variance = 0
>>for score in scores:
>>>>score = (average - score) ** 2
>>>>variance += score
>>result = variance / len(scores)
>>return result 

This returns a variance value of “334.071005917”.

Hope this helps!