class Introducer:
def __init__(self):
self.name = "Arcangelo"
self.surname = "Franco"
self.age = 28
self.location = "Italy"
self.university = "University of Pisa"
def introduce(self):
return (
f"Hi! My name is {self.name} {self.surname}.\n"
f"I'm {self.age} years old and I'm from {self.location}.\n"
"I hope I can be of help to you."
)
def education(self):
return (
f"I completed my Bachelor's degree in Digital Humanities at {self.university},\n"
"focusing on topics such as Natural Language Processing, Human Language Technologies,\n"
"Web Development, and Data Analysis.\n"
"I'm currently pursuing my Master's degree in Data Science and Business Informatics\n"
"at the same university.\n"
"My research interests include Machine Learning, Natural Language Processing, and Data Mining."
)
def main():
presenter = Introducer()
print(presenter.introduce())
print(presenter.education())
if __name__ == "__main__":
main()
-
Data Science & Business Informatics, University of Pisa
- Pisa, Tuscany
- in/arcangelofranco
- just.archi__
Popular repositories Loading
-
-
computational_linguistics_2019-2020
computational_linguistics_2019-2020 PublicComputational Linguistic Project for the Academic Year 2019-2020
Jupyter Notebook
-
Cyberbullying_Classification_HLT_2023-2024
Cyberbullying_Classification_HLT_2023-2024 PublicHuman Language Technologies Project for the Academic Year 2023-2024
Jupyter Notebook
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.