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. Does the code have a get_age method

Np Ms Office 365/Excel 2016 I Ntermed
1st Edition
ISBN:9781337508841
Author:Carey
Publisher:Carey
Chapter3: Performing Calculations With Formulas And Functions
Section: Chapter Questions
Problem 3.9CP
icon
Related questions
Question
100%

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.

Does the code have a get_age method?

def std_dev(list) :
sum = 0
for p in list:
sum += p.age
avg = sum/len(list)
# variance is average of squares of difference of each number and their average
square_sum = 0;
for p in list:
square_sum += (p.age-avg)**2
var = square_sum/len(list)
# standard deviation is root of variance
std = var**0.5
return std
class Person:
def
_init_(self, name, age):
self.name = name
self.age = age
pl = Person("John", 36)
p2 = Person("Rick", 49)
p3 = Person("Kylie", 28)
person_list = [p1,p2,p3]
answer =
std_dev(person_list)
print("standard daviation is : ", answer)
Transcribed Image Text:def std_dev(list) : sum = 0 for p in list: sum += p.age avg = sum/len(list) # variance is average of squares of difference of each number and their average square_sum = 0; for p in list: square_sum += (p.age-avg)**2 var = square_sum/len(list) # standard deviation is root of variance std = var**0.5 return std class Person: def _init_(self, name, age): self.name = name self.age = age pl = Person("John", 36) p2 = Person("Rick", 49) p3 = Person("Kylie", 28) person_list = [p1,p2,p3] answer = std_dev(person_list) print("standard daviation is : ", answer)
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
void method
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
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage