Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Just standard stuff... solution in Clear category for Every Person is Unique by WittyWalrus
import datetime
class Person:
def __init__(self, first_name, last_name, birth_date, job, working_years, salary, country, city, gender='unknown'):
self.first_name = first_name
self.last_name = last_name
d, m, y = map(int, birth_date.split('.'))
self.birth_date = datetime.date(y, m, d)
self.job = job
self.working_years = working_years
self.salary = salary
self.country = country
self.city = city
self.gender = gender
def name(self):
return '{0.first_name} {0.last_name}'.format(self)
def age(self):
d = datetime.date(year=2018, month=1, day=1)
return (d - self.birth_date).days // 365.25
def work(self):
intro = {'male': 'He is', 'female': 'She is'}.get(self.gender, 'Is')
return f'{intro} a {self.job}'
def money(self):
return format(self.salary * self.working_years * 12, ',').replace(',', ' ')
def home(self):
return f'Lives in {self.city}, {self.country}'
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
p1 = Person("John", "Smith", "19.09.1979", "welder", 15, 3600, "Canada", "Vancouver", "male")
p2 = Person("Hanna Rose", "May", "05.12.1995", "designer", 2.2, 2150, "Austria", "Vienna")
assert p1.name() == "John Smith", "Name"
assert p1.age() == 38, "Age"
assert p2.work() == "Is a designer", "Job"
assert p1.money() == "648 000", "Money"
assert p2.home() == "Lives in Vienna, Austria", "Home"
print("Coding complete? Let's try tests!")
July 17, 2019