1.设置字典与接收数据的变量 dictionary = {'a': ['apple', 'abandon', 'ant'], 'b': ['banana', 'bee', 'become'], 'c': ['cat', 'come'], 'd': 'down'} word = input() 2.对接收的数据进行判断并格式化输出 if word in dictio...