with open("data.dat", "r", encoding="utf-8") as f:
n = [i.split() for i in f]
print(n)
numbers = [number for number in set(numbers)]
list(set(numbers))
numbers = list(dict.fromkeys(numbers))
from collections import OrderedDict
numbers = list(OrderedDict.fromkeys(numbers))
оно может пройти проверку если в листе есть и five и fivefive
word = 'five'
wordList = ['one' , 'two', 'three', 'four', 'five', 'fivefive']
wordList_2 = ['one' , 'two', 'three', 'four', 'fivefive']
def check_word(word, wordList):
if word in wordList :
return f'{word} есть в списке'
else:
return f'{word} нет в списке'
print(check_word(word, wordList))
In [6]:
five есть в списке
print(check_word(word, wordList_2))
In [7]:
five нет в списке
Загляните внутрь пакетов. Конкретно посмотрите какие IP адреса в SDP
def test_parent(par,ch):
# par - parent and ch - childe
if ch not in dict_of_class:
return print('No such child - ', ch)
if dict_of_class.get(ch) != 'None':
for i in dict_of_class.get(ch):
print("-- "+i)
if i == par:
return print('answer Yes')
elif dict_of_class.get(i) == 'None':
print('!!1!!')
else:
test_parent(par,i)
Mikrotik RouterOS основана на ядре Linux.
RouterOS is MikroTik's stand-alone operating syste...