#!/usr/bin/python
# -*- coding: utf-8 -*-
class Explorer:
def __init__(self):
self.name = "Gaurav Singh"
self.role = "Web 3.0 Learner/Explorer"
self.language_spoken = ["hn_In", "en_US"]
self.learning = "Web 3.0 languages and frameworks"
self.fun_fact = "I'm a Stoic"
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = Explorer()
me.say_hi()Here are some π¦ party parrots:

