5

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

class Human:

age = 0
name = ""
alive = True
country = ""

person1 = Human()
person1.age = 19
person1.name = "Mustafa"
person1.country = "syria"

print(person1.name)
print(person1.age)
print(person1.country)

print("\n")

person2 = Human()
person2.age = 14
person2.name = "anas"
person2.country = "italy"

print(person2.name)
print(person2.age)
print(person2.country)

print("\n")

print(bool(person2.age))

You might also like