Skip to content
View arcangelofranco's full-sized avatar
Block or Report

Block or report arcangelofranco

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
arcangelofranco/README.md

Typing SVG


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):
      introduction = (
          f"Hi! My name is {self.name}\n"
          f"I'm {self.age} years old and I'm from {self.location}.\n"
          "I hope I can be of help to you."
      )
      return introduction

  def education(self):
      education_path = (
          f"I completed my Bachelor's degree in Digital Humanities\n"
          f"at {self.university}, focusing on topics such as Natural Language Processing,\n"
          "Human Language Technologies, Web Development, and Data Analysis.\n"
          f"I'm currently pursuing my Master's degree in\n"
          "Data Science and Business Informatics at the same university.\n"
          "My research interests include Machine Learning, Natural Language Processing, and Data Mining."
      )
      return education_path

def main():
  presentation = Introducer()

  print(presentation.introduce())
  print(presentation.education())

if __name__ == "__main__":
  main()

Popular repositories Loading

  1. arcangelofranco arcangelofranco Public

  2. computational_linguistics_2019-2020 computational_linguistics_2019-2020 Public

    Computational linguistics project of the academic year 2019-2020

    Jupyter Notebook