Python: Insert object into excel in a specific row and column with win32com
问题 I'm using Python 3.5 and win32com to insert an object (.pdf file) into excel with the following method: Embedded_object.Add(ClassType=None, Filename=file_loction, Link=False, DisplayAsIcon=True, Left=3, Top=0, Width=50, Height=50) This works fine, however it always embeds the object in the A1 cell, is there a way to embed the object into a specific row and column using the above method? Edit: I also tried the following: worksheet.Range('A1:A1').Copy() worksheet.Paste(Destination=worksheet