''' 第一行:彩票数字 第二行;中奖概率 第三行牛牛购买 字典的创建函数: 关键字- d = dict(a=1,b=2,c=3) 映射函数 - dict(zip(['a','b','c'],[1,2,3])) 可迭代对象 d = dict([('a',1),('b',2),('c',3)]) ''' nums = list(input().split()) prob = list(map(float,input().split())) d = dict(zip(nums,prob)) a,b,c = input().split() print('%.3f'%(d[a]*d[b]*d[c]))...