TimilsinaBimal - Overview

#!/usr/bin/python3
# -*- coding: utf-8 -*-


class MLEngineer:
    def __init__(self):
        self.name = "Bimal Timilsina"
        self.language_spoken = ["ne_NP", "en_US", "hi_IN"]
        self.current_focus = "Reinforcement learning",
        

    def say_hi(self):
        print("Thanks for dropping by, hope you find some of my work interesting.")
        

me = MLEngineer()
me.say_hi()