I would like to replace all data in a table in the existing ppt slide (not just one cell). I know what my shape id is and I found a solution (Python Pptx - Modify Existing Table) that solves for replacement of 1 cell in a table:
Presentation('yourpowerpoint.pptx').slides[0].shapes[6].table.cell(0,0).text= 'Pina Colada'
However, I have two additional questions related to replacing data in a table:
1) How can I replace all data of the table at once instead of one cell at a time?
2) When I replace data in a cell, I noticed that size of the font, centering, and color of the font change. How can I keep the font as it is in the exiting ppt table and only replace values?