Due: Monday, October 28
Write two functions:
list_output()
items = ['alpha', 'beta', 'gamma'] list_output("letters.txt", items)
should create the following file:
0 alpha 1 beta 2 gamma
Note – list_output() takes two parameters – a string, which is the name of the output file, and the list. list_output() should not return anything! It simply creates a file.
return
list_input()
NOTE: Please consider the following:
find