class utpal():
def __init__(self):
self.name = "Utpal"
self.code = ["python", "PHP", "HTML", "CSS"]
self.pronouns = ["He", "His"]
self.location = "INDIA"
self.current_work = "working on my own projects"
def sayHi(self):
print("Welcome to my page. Nice to see you here.")
def funFact(self):
print("Here is a fun fact:- To write an error free code, don't write it.")
def about(self):
print(f"Hi, my name is {self.name}. I am from {self.location}.")
print(f"I can code in {self.code}. I am currently {self.current_work}.")
Utpal = utpal()
Utpal.sayHi()
Utpal.about()
Utpal.funFact()
Find me: _utpalkumar Utpal Kumar