class Profile:
def __init__(self):
self.name = 'AbdulRahman Khalid'
self.role = ['AI/ML Engineer', 'Data Scientist']
self.about = ['AI/ML engineer with practical experience across the full ML lifecycle,
turning complex data into reliable, production-ready solutions,
backed by solid programming and real-world deployment expertise.']
def say_hi(self):
print('Thanks for stopping by!, hope something here catches your eye.')
me = Profile()
me.say_hi()|
|
|









