#!/usr/bin/python
# -*- coding: utf-8 -*-
class DataScientist:
def __init__(self):
self.name = "Rahul Kalluri"
self.pronouns = "He/Him"
self.roles = ["Data Scientist", "Machine Learning Engineer"]
self.language_spoken = ["en_US"]
self.degrees = ["Statistics", "Economics"]
self.hobbies = "Too many to list"
def say_hello(self):
print("Welcome to my space. Feel free to drop me a message!")
me = DataScientist()
me.say_hello()
Looking for my commits? They're on my work profile!