gpt4 book ai didi

python - 如何配置 ipython 以十六进制格式显示整数?

转载 作者:太空狗 更新时间:2023-10-29 17:15:01 26 4
gpt4 key购买 nike

这是默认行为:

In [21]: 255
Out[21]: 255

这就是我想要的:

In [21]: 255
Out[21]: FF

我可以设置 ipython 来做到这一点吗?

最佳答案

您可以通过为整数注册一个特殊的显示格式化程序来做到这一点:

In [1]: formatter = get_ipython().display_formatter.formatters['text/plain']

In [2]: formatter.for_type(int, lambda n, p, cycle: p.text("%X" % n))
Out[2]: <function IPython.lib.pretty._repr_pprint>

In [3]: 1
Out[3]: 1

In [4]: 100
Out[4]: 64

In [5]: 255
Out[5]: FF

如果你想要这个永远在线,你可以在 $(ipython locate profile)/startup/hexints.py 中用前两行创建一个文件(或者作为一个文件来避免任何分配) :

get_ipython().display_formatter.formatters['text/plain'].for_type(int, lambda n, p, cycle: p.text("%X" % n))

每次启动 IPython 时都会执行。

关于python - 如何配置 ipython 以十六进制格式显示整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14977066/

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