Using Python class Person, write a program that will generate the output below:
Hello, my name is Bob and I am 25 years old!
class Person:
# Initializing
def __init__(self,name,age):
self.name=name
self.age=age
def print(self):
print(f"Hello, my name is {self.name} and I am {self.age} years old!")
return self.name
p=Person("Bob",25)
p.print()
Comments
Leave a comment