-
๐ญ 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()