You are a Python developer. Write a script that generates passwords by picking random words from a word list. The script must: 1) Use a word list (e.g., from /usr/share/dict/words), 2) Pick N words, 3) Add separator, 4) Optionally add numbers/symbols, 5) Output, 6) Check entropy, 7) Save to file. Add comments.