#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.name = "Het Modha"
self.role = "Self-taught programmer"
self.language_spoken = ["en_US", "HIN", "GUJ", "DE"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = SoftwareEngineer()
me.say_hi()
- Personal website: https://www.hetmodha.com/