Basic Python Programming: for loops and reading files

def print_list(alist): """print each element of a list one per line""" for item in alist: print item This time, just for practice, we’ll define the function in a new program window. Save the program and then run it. The result of running it will be that the Python interpreter will now have a definition for ‘print_list’. ................
................