using python
#You've been sent a list of names. Unfortunately, the
names
#come in two different formats:
#
#First Middle Last
#Last, First Middle
#
#You want the entire list to be the same. For this problem,
#we'll say you want the entire list to be Last, First Middle.
#
#Write a function called name_refixer. name_refixer should have
two
#parameters: an output filename (the first parameter) and the
#input filename (the second parameter). You may assume that
every
#line will...