Write a class called Person that has two private data members - the person's name and age. It should have an init method that takes two values and uses them to initialize the data members. It should have a get_age method. Write a separate function (not part of the Person class) called std_dev that takes as a parameter a list of Person objects and returns the standard deviation of all their ages (the population standard deviation that uses a denominator of N, not the sample standard deviation, which uses a different denominator). To calculate the standard deviation, you'll need to take a square root, which you can do by just using an exponent of 0.5. For example, the result of 9 ** 0.5 would be 3.0. Python does have a specific sqrt() function, but that involves importing a module, which we haven't covered yet. Here's a simple example of how your class and function could be used: p1 = Person("Kyoungmin", 73) p2 = Person("Mercedes", 24) p3 = Person("Beatrice", 48) person_list = [p1, p2, p3] answer = std_dev(person_list)

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

Written in Python 

It should have an init method that takes two values and uses them to initialize the data members. It should have a get_age method.

Docstrings for modules, functions, classes, and methods

Write a class called Person that has two private data members - the person's name and age. It should have an init method that takes
two values and uses them to initialize the data members. It should have a get_age method.
Write a separate function (not part of the Person class) called std_dev that takes as a parameter a list of Person objects and returns
the standard deviation of all their ages (the population standard deviation that uses a denominator of N, not the sample standard
deviation, which uses a different denominator).
To calculate the standard deviation, you'll need to take a square root, which you can do by just using an exponent of 0.5. For
example, the result of 9 ** 0.5 would be 3.0. Python does have a specific sqrt() function, but that involves importing a module, which
we haven't covered yet.
Here's a simple example of how your class and function could be used:
p1 =
Person ("Kyoungmin", 73)
p2
Person ("Mercedes", 24)
%3D
= Person ("Beatrice", 48)
p3
person_list = [p1, p2, p3]
answer = std_dev(person_list)
Transcribed Image Text:Write a class called Person that has two private data members - the person's name and age. It should have an init method that takes two values and uses them to initialize the data members. It should have a get_age method. Write a separate function (not part of the Person class) called std_dev that takes as a parameter a list of Person objects and returns the standard deviation of all their ages (the population standard deviation that uses a denominator of N, not the sample standard deviation, which uses a different denominator). To calculate the standard deviation, you'll need to take a square root, which you can do by just using an exponent of 0.5. For example, the result of 9 ** 0.5 would be 3.0. Python does have a specific sqrt() function, but that involves importing a module, which we haven't covered yet. Here's a simple example of how your class and function could be used: p1 = Person ("Kyoungmin", 73) p2 Person ("Mercedes", 24) %3D = Person ("Beatrice", 48) p3 person_list = [p1, p2, p3] answer = std_dev(person_list)
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
List
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education