#!/usr/bin/python
# -*- coding: utf-8 -*-
class ComputerScienceEngineer:
def __init__(self):
self.name = "Ayoub EL AAMRI"
self.role = "Software Engineer"
self.language_spoken = ["en_US", "fr_FR", "ar_MA", "es_ES"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = ComputerScienceEngineer()
me.say_hi()
- Personal website and blog: https://ayoubelaamri.me/