import sys table1 = ['reset','reset board','board add','board delete','reboot backplane','backplane abort'] table2 = ['reset what','board fault','where to add','no board at all','impossible','install first'] def match_one(a,table1): resualt1 = [ x for x in table1 if x.startswith(a)] resualt2 = min(r...