- π Data Scientist
- π§ Machine Learning Engineer
- π¨βπ» Technology Entrepreneur
#!/usr/bin/python
# -*- coding: utf-8 -*-
class Me:
"""
A class to represent a person. (Actually just for me)
"""
def __init__(self):
self.name = "Lazaros Paschalidis"
self.pronouns = "he/him"
self.role1 = "Data Scientist"
self.role2 = "Technology Entrepreneur"
self.bsc_studies = ("Business Administration", "University of Macedonia")
self.msc_studies = ("Data Analytics", "Computing Dept.", "University of Portsmouth")
self.language_spoken = ["el_GR", "en_US"]
self.country = "Greece"
self.city = "Thessaloniki"
self.values = ["Gratitude", "Empathy", "Humility","Teamwork", "Integrity", "Trust", "Accountability", "Passion", "Leadership", "Kaizen"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting. \n I'll be happy to connect with you on Social Media!")
print("Thanks to @papaemman who inspired me to do this!!!")
me = Me()
me.say_hi()