python 格式化输出保留一位小数

#方法1:
print("%.1f" % 0.13333)

#方法2
print("{:.1f}".format(0.13333))    

#方法3
round(0.13333, 1)