我用Python编写了一个程序。使用熊猫创建一个Excel文件,该文件在几张纸上显示数字和字符串。我希望数字向右对齐。 现在看起来像这样:
Test name Failed\passed Running time
Test A Passed 3
如何将数字列向右移动? 我尝试使用此:
df1.style.set_properties(**{'text-align': 'right'})
但是它不能解决问题。
谢谢。
答案 0 :(得分:0)
@ @ @ https://xlsxwriter.readthedocs.io/example_pandas_column_formats.html
也许这对你有用
format1 = workbook.add_format({'align': 'right','bold': True, 'bottom':6})
然后将其传递给conditional_format