I am passionate about learning and aspire to become an accomplished Machine Learning Engineer. I enjoy working on perception applications using libraries like OpenCV to create innovative software solutions. I am committed to continuously expanding my expertise and contributing to building a brighter world. π YouTube Channel Coming Very Soon! π
"Find a job you enjoy doing, and you will never have to work a day in your life." β Mark Twain
"Once you stop learning, you start dying." β Albert Einstein
"Commit yourself to lifelong learning. The most valuable asset youβll ever have is your mind and what you put into it." β Albert Einstein
class Introduction:
"""A class to represent a personal introduction."""
def __init__(self, name, passion, location, education, specialization):
"""
Initialize the Introduction object with personal attributes.
"""
self.name = name
self.passion = passion
self.location = location
self.education = education
self.specialization = specialization
def generate_introduction(self):
"""
Generate a formatted introduction string.
"""
intro = (
f"Hi there, I'm {self.name} π\n"
f"I'm passionate about {self.passion} and continuously expanding my knowledge.\n"
f"I love {self.location}, and I am currently pursuing my Master's in {self.education} at "
f"Tennessee State University, concentrating on {self.specialization}."
)
return intro
def display_introduction(self):
"""
Print the introduction to the console.
"""
print(self.generate_introduction())
def main():
"""
Main function to create an Introduction object and display the message.
"""
# Data input
name = "Husain"
passion = "building software solutions"
location = "Texas"
education = "Master of Science in Data Science"
specialization = "Machine Learning"
# Creating an Introduction object and displaying the introduction
intro = Introduction(name, passion, location, education, specialization)
intro.display_introduction()
if __name__ == "__main__":
main()
Certification | Issuer |
---|---|
Linux Essentials Certified | Linux Professional Institute (LPI) |
Microsoft Certified: Azure Data Fundamentals | Microsoft |
Certified Blockchain Expert | Blockchain Council |
Red Hat Certified System Administrator | Red Hat |