From e2841c891b3ca1bf46fa7d2e030c8fba034f0f83 Mon Sep 17 00:00:00 2001 From: Huihuang Zheng Date: Tue, 25 Feb 2020 14:18:44 +0800 Subject: [PATCH] Change print to python3 style (#1792) As the title --- doc/fluid/api_cn/layers_cn/IfElse_cn.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/fluid/api_cn/layers_cn/IfElse_cn.rst b/doc/fluid/api_cn/layers_cn/IfElse_cn.rst index 35b41973f..295fd454f 100644 --- a/doc/fluid/api_cn/layers_cn/IfElse_cn.rst +++ b/doc/fluid/api_cn/layers_cn/IfElse_cn.rst @@ -57,7 +57,7 @@ IfElse OP同其他的OP在使用上有一定的区别,可能会对一些用户 exe.run(fluid.default_startup_program()) res = exe.run(fluid.default_main_program(), feed={"x":x_d, "y":y_d}, fetch_list=[out]) - print res + print(res) # [array([-1.], dtype=float32)] 参数: -- GitLab