执行如下 Python 程序段后, 结果正确的选项是? ( )
d={1:2,3:4,5:6,7:8}
s=[5,1,7]
ans=""
for i in s:
ans +=str(d[i])
print(ans)
517
846
628
625