Q12Single correct3 Marks11 Dec 2022
What are the contents of the file greek.txt created by the following snippet of code?
```
f = open('greek.txt', 'w')
f.write('alpha')
f.write('beta')
f.write('gamma')
f.write('delta')
f.write('theta')
f.close()
```