import docx

doc = docx.Document('perhitungan.docx')
for para in doc.paragraphs:
    if para.text.strip():
        print(para.text)
