while True: try: command = input().split(' ') dict_command = { 'reset': 'reset what', 'reset board': 'board fault', 'board add': 'where to add', 'board delete': 'no board at all', 'reboot backplane': 'impossible', 'backplane abort': 'install first', 'other': 'unknown command' } keys_list = [] for ke...