我正在尝试找出如何使用Times New Roman,Size 12字体将.doc文件转换为.docx文件。
我编写了一个脚本,该脚本从Wikipedia API中提取了纽约市的文章。并将文章内容输出到.doc文件。
import wikipedia
ny = wikipedia.page("New York City")
content = ny.content
title = ny.title
with open(title+'.doc', 'w', encoding='utf-8') as f:
print(content, file=f)
预期结果是将一个.doc文件转换为具有Times New Roman大小12字体的.docx文件