Uyga vazifa :
1. Student nomli class yarating.
init metodi orqali studentning ismi, yoshi va h,k larni qabul qilsin.
about nomli metod ham qo'shing.
2. Home nomli class yarating.
init metodi orqali uyingizning manzili, maydoni, xonalar_soni va h,k larni qabul qilsin.
about nomli metod ham qo'shing.
class Student:
def __init__(self, name="No name", age=0, height=0, weight=0):
self.name = name
self.age = age
self.height = height
self.weight = weight
def about(self):
return f"My name is {self.name}, I am {self.age} years old."
class Home:
def __init__(self, address="Unknown", area=0, num_rooms=0, height=0, weight=0):
self.address = address
self.area = area
self.num_rooms = num_rooms
self.height = height
self.weight = weight
def about(self):
return f"Our home is located at {self.address}, it has an area of {self.area} square feet."
1. Student nomli class yarating.
init metodi orqali studentning ismi, yoshi va h,k larni qabul qilsin.
about nomli metod ham qo'shing.
2. Home nomli class yarating.
init metodi orqali uyingizning manzili, maydoni, xonalar_soni va h,k larni qabul qilsin.
about nomli metod ham qo'shing.
class Student:
def __init__(self, name="No name", age=0, height=0, weight=0):
self.name = name
self.age = age
self.height = height
self.weight = weight
def about(self):
return f"My name is {self.name}, I am {self.age} years old."
class Home:
def __init__(self, address="Unknown", area=0, num_rooms=0, height=0, weight=0):
self.address = address
self.area = area
self.num_rooms = num_rooms
self.height = height
self.weight = weight
def about(self):
return f"Our home is located at {self.address}, it has an area of {self.area} square feet."