I want to get a text from a word doc and make some change to it and put it into a new word doc
how can I change direction to Right-to-Lift and font size to 35
from docx import Document
doc = Document("nameOfTheFile.docx")
doc2 = Document()
n = 0
for p in doc.paragraphs:
n += 1
# doc2.add_paragraph(p.text)
print(n)
doc2.save("nameOfTheFileEdited.docx")