53 lines
849 B
Python
53 lines
849 B
Python
s_1 = [
|
|
"user",
|
|
"password",
|
|
"enable_password",
|
|
"id",
|
|
"status",
|
|
"ip",
|
|
"name",
|
|
"manufacturer",
|
|
"port",
|
|
"user",
|
|
"password",
|
|
"description",
|
|
"cisco_type",
|
|
"connection_type",
|
|
"enable_password",
|
|
"rsa_limit",
|
|
"last_status_change",
|
|
"protocol",
|
|
"administrators",
|
|
"group",
|
|
"status",
|
|
"manufacturer",
|
|
"last_status_change",
|
|
"connection_type",
|
|
]
|
|
|
|
s_2 = [
|
|
"username",
|
|
"password",
|
|
"id",
|
|
"status",
|
|
"ip",
|
|
"name",
|
|
"manufacturer",
|
|
"port",
|
|
"username",
|
|
"password",
|
|
"description",
|
|
"connection_type",
|
|
"last_status_change",
|
|
"protocol",
|
|
"administrators",
|
|
"group",
|
|
"status",
|
|
"manufacturer",
|
|
"last_status_change",
|
|
"connection_type",
|
|
]
|
|
|
|
print("\n".join(set(s_1 + s_2)))
|
|
|
|
print([i for i in range(0,20)])
|