Hello There, I'm Akshat Shirsat.
Cybersecurity enthusiast with a passion for penetration testing, vulnerability analysis, digital forensics, threat hunting, and incident response, Proficient in Python, Linux, and web application development Currently building my Security Analyst skills through the use of various CTFs, certifications, and projects/labs
class Human:
def __init__(self, name, age, occupation, hobbies, work, projects):
self.name = name
self.age = age
self.occupation = occupation
self.hobbies = hobbies
self.work = work
self.projects = projects
def introduce(self):
print(f"Hello, world! My name is {self.name}.")
print(f"I am {self.age} years old and work as a {self.occupation} at {self.work}.")
print("In my free time, I enjoy the following hobbies:")
for hobby in self.hobbies:
print(f" - {hobby}")
self.show_projects()
def show_projects(self):
if self.projects:
print("Here are some of my projects:")
for project in self.projects:
print(f" - {project}")
else:
print("I'm currently not working on any projects.")
if __name__ == "__main__":
# Create an instance of the Human class
me = Human(
name="Akshat Shirsat",
age=23,
occupation="Data Analysts",
hobbies=["Cricket", "Gammning", "Music"],
work="TCS",
projects=["Project 1", "Project 2", "Project 3"]
)
# Introduce yourself
me.introduce()
Feel free to reach out—I'm always eager to connect, collaborate, and explore new opportunities. Let's make something great together!