Question: Create a script that generates a text file with all letters of the English alphabet inside it, one letter per line.

Hint: You need to open a file in write mode, iterate through a list of letters, and use a write  method in each iteration.