The Packet Punter

Where the dropped packets go.

View My GitHub Profile

Home

About Me

Python funsies

Cisco junk

Firewall things

Opinions

myPerson.py

class me:
    def define_self():
        name = 'John B'
        job = 'network engineer'
        interests = 'network security, design, automation, python3, android'
        notes = 'certified PCNSE, CCNA'
        all_data = name, class, interests, notes
        for d in all_data:
            print(d)
    
    def main():
        define_self()

    if '__name__' == '__main__':
        main()