Consider there are two tables in a MS docx file. First Table with X rows and Y columns and second table with M rows and N columns in the same MS docxfile. Now i want to copy complete second table along with its contents to one of cell (say cell (X,Y)) of first table in python. Example of table shown below:
First Table with 2 columns 5 rows Second Table with 3 columns 4 rows
Now i want to copy second table full content with formatting into last cell of the first table. Final result after copy should look like below:
How do we achieve this in python ?