Using the docx module, I was able to put formatted(bulleted) text in a Word document.
However, I want this formatted text to go into my clipboard so I can instantly paste it into a main document.
What commands should I use to put this formatted text in my clipboard for pasting in another Word document?
This is how I was able to create and format the text:
    para=doc.add_paragraph()
    run = para.add_run(text)
    font = run.font
    font.name = 'Calibri'
    font.size = docx.shared.Pt(9)
    para.style = doc.styles['List Bullet']
