All I could find was about paragraphs as wholes (as it seems). Tried to use the solution anyway, but there was an error ("AttributeError: .runs").
I looked into python-docx documentation, but I don't know how to apply that information here.
My paragraphs have italicized words and possibly parts of words. What (I think) I need is a loop that checks if characters are italicized.
import win32com.client as win32
word = win32.Dispatch("Word.Application")
word.Visible = 0
word.Documents.Open("C:**path**.docx")
doc = word.ActiveDocument
doc.Tables.Count
table = doc.Tables(1)
index = list(range(0, 1000))
for i in index:
s = table.Cell(Row =i, Column =1).Range.Text
# now another loop, using 'run' object?