Welcome to my profile! I'm a sophomore at Allegheny College double majoring in Computer Science & Economics. Thanks for visiting and I'd love to connect!
#!/usr/bin/python
# -*- coding: utf-8 -*-
class ME:
def __init__(self):
self.name = "Hemani Alaparthi"
self.role = "Software Engineer"
self.codelanguages = ["python", "java"]
self.hobbies = ["reading", "coding", "napping"]
def say_hi(self):
print("Thanks for dropping by, Let's connect!")
me = ME()
me.say_hi()