python编写程序,读取英里数然后转换为公里数并显示结果。一英里≈1.609公里,输出结果保留两位小数。(输出中包含千米字样,后面的冒号为英文冒号)
x = float(input()) print(f'{round(x*1.609,2)}公里')