class Satyam:
def __init__(self):
self.name = "Satyam"
self.role = "Beginner Programmer"
self.learning = ["Python", "C"]
self.goal = "Improve coding skills step by step 🚀"
def intro(self):
return "Hey! Welcome to my GitHub profile 👋"
me = Satyam()
print(me.intro())- Python Basics 🐍
- C Programming 💻
- Problem Solving 🚀

