题解 | 查字典
查字典
https://www.nowcoder.com/practice/ee9c1157f07440f68c86e54a2613a927
import sys
dict1 = {'a':['apple','abandon','ant'],'b':['banana','bee','become'],'c':['cat','come'],
'd':'down'}
input_thing = input()
for i in dict1[input_thing]:
print(i,end=' ')
汤臣倍健公司氛围 406人发布