Rating:

```
import os

for i in range(25000, 0, -1):
text_file = open("password.txt", "r")
pwd = text_file.read()
text_file.close()
com = 'unzip -P ' + pwd.strip() + ' -o zip-' + str(i) + '.zip'
delete = 'rm -f zip-' + str(i) + '.zip'
os.system(com)
os.system(delete)
```