class UserDetails:
def __init__(self, firstName, lastName, age, course, specialty):
self.fullName = f"{firstName} {lastName}"
self.age = age
self.course = course
self.specialty = specialty
def introduce(self):
return f"Hi! My name is {self.fullName}. {self.age} years old. My course is {self.course} and I am a {self.specialty}"
myself = UserDetails("Gio", "Majadas", 21, "Bachelor of Science in Information Technology", "Front-End Developer")
myself.introduce()
- Facebook: Gio Majadas
- LinkedIn: Gio Majadas
- Email: [email protected]