Pietro Molendys
class PietroMolendys:
"""
Computer Science student from Cracow, Poland.
Focused on algorithms, software development and programming overall.
"""
def __init__(self):
self.name = "Pietro Molendys"
self.location = "Cracow, Poland"
self.email = "molendyspietro@gmail.com"
self.linkedin = "linkedin.com/in/pietro-molendys-b1324231b"
self.github = "github.com/pedritos22"
self.quote = "Nothing in life is to be feared. It is only to be understood."
self.quote_author = "– Maria Skłodowska-Curie"
def education(self):
"""Return educational background."""
return "Cracow University of Technology — Computer Science"
def skills(self):
"""Return list of primary technical skills."""
return [
"C - low-level programming & optimization",
"Python - data analysis, ML & automation",
]
def attitude(self):
"""Describe mindset and approach to learning."""
return "Open to new challenges, continuously learning, growth-oriented."
def contact(self):
"""Print contact information."""
print(f"Email: {self.email}")
print(f"LinkedIn: {self.linkedin}")
print(f"GitHub: {self.github}")
me = PietroMolendys()
print(f"Name: {me.name}")
print(f"Location: {me.location}")
print(f'"{me.quote}" {me.quote_author}')
print("\nEducation:", me.education())
print("\nSkills:")
for skill in me.skills():
print(" - " + skill)
print("\nAttitude:", me.attitude())
print("\nContact:")
me.contact()