-
π Iβm currently working on BookBazzar
-
π± Iβm currently learning ReactJS
-
π¬ Ask me about Bootstrap, PHP
-
π« Feel free to reach me out [email protected]
-
π¨βπ» All of my projects are available at https://romanshrestha.com.np/
-
π Know about my experiences https://romanshrestha.com.np/
-
β‘ Fun fact The term "debugging" comes from a literal bug
class Roman():
def __init__(self):
self.name = "Roman Shrestha";
self.username = "Romanstha";
self.location = "Itahari, Nepal";
self.twitter = "@romanstha123";
self.web = "https://www.romanshrestha.com.np";
def __str__(self):
return self.name
if __name__ == '__main__':
me = Roman()
|