-
π Iβm currently working on FastAPI
-
π± Iβm currently learning Python Automation
-
π― Iβm looking to collaborate on REST API
-
π I regularly write articles on manandevpro.com/
-
π¬ Ask me about HTML, CSS, JavaScript, Django, Backend
-
π« How to reach me manandevpro@gmail.com
-
π Know about my experiences https://www.linkedin.com/in/manandevpro
-
β‘ Fun fact I have a great humor and I'm also a memer.
#!/usr/bin/python
# -*- coding: utf-8 -*-
class WebDeveloper:
def __init__(self):
self.name = "Abdul Manan"
self.role = "Computer Science Student"
self.language_spoken = ["ur_PK", "en_UK", "ru_RU"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = WebDeveloper()
me.say_hi()