Building scalable web applications with modern technologies. Passionate about clean code, backend architecture, and creating impactful software solutions.
class IreshTrips():
def __init__(self):
self.name = "Iresh Chathuranga";
self.username = "ireshChathuranga";
self.location = "Ambalangoda, Sri lanka";
self.email = "ireshchathuranga63309@gmail.com";
def __str__(self):
return self.name
if __name__ == '__main__':
me = IreshTrips()
|
|






