我知道之前有人问过类似的问题,但是我无法编辑我的代码来适应:
我有一个 python 脚本,它将 15 个数字的所有组合写入一个 txt 文件中:
import itertools
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
combinations = list(itertools.combinations(numbers, 15))
#print(combinations)
#Write combinations to a file
with open('combinations.txt', 'w') as f:
for comb in combinations:
f.write(str (comb) + '\n')
我需要写入一个 xlsb 文件,每个列中的数字没有括号或逗号,预期结果如下:
...带有集中文本和固定列宽 有任何简单小代码的想法吗?我已经有了 pandas 和 openpyxl(如果有帮助的话)