class PxS:
def __init__(self):
self.skills = ["Pentest", "Development", "SysAdmin"]
self.projects = ["RedTeam", "GNU/Linux Distribution"]
def __repr__(self):
t = f"""
skills : {", ".join( skill for skill in self.skills )}
projects : {", ".join( project for project in self.projects )}
"""
return t
ax = PxS()
print(ax)
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.