python中如何将字典的值value保留一位小数输出呢运用format显示非str
用round函数,x是你原本的数值,2是你要保留一位小数round(x, 1)
print('{:.1f}'.format(1.2222))