当主程序呈现图像时,这段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();
答案 0 :(得分:1)
最接近的等价物是print(a_string_variable, file=sys.stderr)
。