Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XLWT 的易用性给我留下了深刻的印象,但有一件事我还没有弄清楚该怎么做。我正在尝试将某些行调整为显示所有字符所需的最小宽度(换句话说,如果双击单元格之间的分隔线,excel 会做什么)。
我知道如何将列宽调整到预定量,但我不确定如何确定显示所有内容所需的最小宽度。
宽度是默认字体的零字符宽度的 1/256。一个足够好的近似值是:
def get_width(num_characters): return int((1+num_characters) * 256)