9 lines
315 B
Python
9 lines
315 B
Python
import docx
|
|
|
|
path = "PERANCANGAN SISTEM REKOMENDASI KAMERA PADA PERSEWAAN KAMERA DENGAN BERBASIS WEBSITE MENGUNAKAN ALGORITMA TOPSIS (Revisi 6 fix bismillah).docx"
|
|
doc = docx.Document(path)
|
|
|
|
for idx in range(610, 660):
|
|
if idx < len(doc.paragraphs):
|
|
print(f"Paragraph {idx}: {doc.paragraphs[idx].text}")
|