'Win32com Excel selecting multiple rows

I've been trying to copy multiple rows using ws.Rows() but so far I've only been able to copy one row at a time. Is there a more efficient way?

for row in range(1, 7):
    Sheet.Rows(row).Copy()


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source