我想显示分数的前4位,并将其传递给字符串以显示在我的图的标题中。我检查了此post,但找不到优雅的方式。
我尝试过以下代码,因为该问题最简单的方法是我不想在此之后显示%
:
train_MSE=mean_squared_error(Y_train, Y_RNN_Train_pred)
print("Train MSE:",train_MSE_)
#Train MSE: 0.33068236552127656
train_MSE_ = "%.4f%%" % train_MSE
print("Train MSE:",train_MSE_)
#Train MSE: 0.3307%
#expected result without '%' ---> 0.337
plt.plot(Y_RNN_Test_pred[0],'b-')
plt.title(f'Test MSE={test_MSE_}', fontsize=15, fontweight='bold')
plt.show()
答案 0 :(得分:2)
您需要最后删除%%
。
train_MSE_ = "%.4f" % train_MSE_
答案 1 :(得分:0)
您可以使用格式命令
print('{0:.4f}'.format(0.264875464))
结果
0.2649
因此,您可以编写如下代码:
train_MSE_=0.264875464
print('Train MSE:{0:.4f}'.format(train_MSE_))
reslut
Train MSE:0.2649
答案 2 :(得分:0)
您可以这样做:
/some_page
您可以在此处查看有关格式字符串的更多详细信息:https://docs.python.org/3.7/library/string.html#formatstrings