相当于Python中的C ++的std :: clog?

时间:2017-02-27 15:27:37

标签: python c++ clog

当主程序呈现图像时,这段C ++代码将在终端上显示“加载文本”。我知道它是因为 std :: clog 而做到的。我一直在寻找,我认为 subprocess 模块可以帮助我在Python上复制它,但我完全不知道如何使用它。你会如何用Python编写代码?

   std::stringstream progress_stream;
   progress_stream << "\r  progress .........................: "
                    << std::fixed << std::setw( 6 )
                    << std::setprecision( 2 )
                    << 100.0 * y / ( buffer_.v_resolution_ - 1 )
                    << "%";

    std::clog << progress_stream.str();

1 个答案:

答案 0 :(得分:1)

最接近的等价物是print(a_string_variable, file=sys.stderr)