Where the dropped packets go.
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()