gpt4 book ai didi

python - setfill 和 setw python 等效?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:44:04 26 4
gpt4 key购买 nike

我目前正在将一些 C++ 代码移植到 python,但没有找到如何翻译它:

print  std::setfill('0') << std::setw(2) << std::hex << myVar << std::dec << " "

如何将 std::setfill('0')std::setw(2) 翻译成 python?

最佳答案

没有直接的等效项,但您可以使用 format 函数转换要显示的每个值。参见 https://docs.python.org/2/library/string.html#format-specification-mini-language格式规范。

print '{:02x}'.format(myVar)

关于python - setfill 和 setw python 等效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24165993/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com