A little more about me... portfolio
#!/usr/bin/python
# -*- coding: utf-8 -*-
class DataScientist:
def __init__(self):
self.name = "Harsh Tiwadi"
self.role = "Data Scientist"
self.language_spoken = ["Hindi", "English"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = DataScientist()
me.say_hi()