

class Engineer:
def __init__(self):
self.name = "Mo"
self.roles = [
"Solution Finder",
"Data Engineer",
"Machine Learning Engineer",
"Cloud Architect"
]
self.language_spoken = ["en_US","others"]
self.degrees = ["Engineering"]
self.hobbies = "Too many to list"
self.fun_facts = (
"Constantly learning, contributing, exploring, "
"solving, creating, innovating, optimizing, "
"analyzing, developing, tinkering."
)
def say_hello(self):
print("Welcome to my Github. Feel free to drop me a message!")
me = Engineer()
me.say_hello()