https://github.com/arcangelofranco/arcangelofranco
https://github.com/arcangelofranco/arcangelofranco
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arcangelofranco/arcangelofranco
- Owner: arcangelofranco
- License: mit
- Created: 2024-03-05T17:38:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-22T12:20:44.000Z (11 months ago)
- Last Synced: 2024-07-22T14:40:51.620Z (11 months ago)
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
```python
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()
```