Degree | Specialization | University | |
---|---|---|---|
👨🔬 | MEng | Artificial Intelligence, Machine Learning and Big Data | Roma Tre |
👨💻 | BEng | Software Engineering | Roma Tre |
Years | Role | Enterprise | |
---|---|---|---|
💡 | '20/now | Data Scientist | Enel |
🖥️ | '19/'20 | Machine Learning Engineer | HCL |
👔 | '18/'19 | Data Engineer | Reply |
#!/usr/bin/python
# -*- coding: utf-8 -*-
class DataScientist:
def __init__(self):
self.name = "Enrico Petrachi"
self.role = "Data Scientist"
self.summary = "Hi I\'m " + self.name + " a " + self.role + " with a \
technical education. I approach my data-driven projects from a \
business point of view and I use the agile approach to quickly \
deliver results and improve them iteratively."
self.bye = "Thanks for dropping by here!"
def say_hi(self):
print(self.bye)
def introduce_yourself(self):
print(self.summary)
me = DataScientist()
me.say_hi()
me.introduce_yourself()