# !/usr/bin/python
# -*- coding: utf-8 -*-
class Developer:
def __init__(self):
self.name = "Aditya Kumar π"
self.role = "Backend Developer π»"
self.love = "Python π"
self.location = "India"
def say_hi(self):
print("Thank you for visiting, I hope you find some of my work intriguing.")
me = Developer()
me.say_hi()
