Hello world! , I'm Mahdi Moghassami, a passionate Computer Engineer with three years of experience in front-end development and software engineering. I've also dabbled in back-end development using Python, Django, and Flask. My journey in tech is fueled by an insatiable curiosityโalways eager to learn and grow. Recently, I've dived deep into the captivating world of machine learning, aiming to sharpen my skills in this transformative field. ๐ Let's code, learn, and innovate together!
#!/usr/bin/python
# -*- coding: utf-8 -*-
class ComputerEngineerStudent:
def __init__(self):
self.name = "Mahdi Moghassemi"
self.role = "Computer Engineering @ K. N. Toosi University of Technology"
self.language_spoken = ["en_US", "Fa"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = ComputerEngineerStudent()
me.say_hi()