在ipywidgets
中,如何对大滑块值使用科学记数法?说如果我有类似的东西:
FloatSlider(min=1e7, max=1e9, step=1e7)
滑块上的显示将充满零。我能以某种方式将其转换为科学记数法吗?
答案 0 :(得分:0)
如果你阅读了帮助,你会发现一个部分说:
readout_format : str
default is '.2f', specifier for the format function used to represent
slider value for human consumption, modeled after Python 3's format
specification mini-language (PEP 3101).
所以:
FloatSlider(min=1e7, max=1e9, step=1e7, readout_format='.2e')
应该做的。