阅读量:11
在Python中,可以使用格式化字符串来设置打印输出的精度。下面是一些常用的方式:
- 使用
%
操作符格式化字符串:
num = 3.1415926 print("%.2f" % num) # 输出:3.14
- 使用
format
方法格式化字符串:
num = 3.1415926 print("{:.2f}".format(num)) # 输出:3.14
- 使用f-string格式化字符串(Python 3.6及以上版本):
num = 3.1415926 print(f"{num:.2f}") # 输出:3.14
在上述例子中,.2f
表示保留小数点后两位。你可以根据需要调整精度值。