#!/usr/bin/python
# -*- coding: utf-8 -*-
class DataScientist:
def __init__(self):
self.name = "Kori Jamal"
self.role = ["Data Scientist"]
self.language_spoken = ["uz_UZ", "en_US", "kr_KR","ru_Ru]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = DataScientist()
me.say_hi()
Programming Languages: