man=[]
other=[]

try:
    data = open('sketch.txt')

    for each_line in data:
        try:
            (role, line_spoken) = each_line.split(':',1)
            line_spoken=line_spoken.strip()
            if role=='Man':
                man.append(line_spoken)
            elif role=='Other Man':
                other.append(line_spoken)
            
        except ValueError:
            pass

    data.close()
except IOError as err:
    print('File error: ' + str(err))

try:
    with open('man_data.txt', 'w') as man_file, open('other_data.txt', 'w') as other_file:

        nester_nested.print_lol(man, fh=man_file)
        nester_nested.print_lol(other, fh=other_file)

except IOError as err:
    print('File error: ' + str(err))
示例#2
0
import nester_nested
movies = [ "The Holy Grail", 1975, "Terry Jones & Terry Gilliam",91,["Graham Chapman", ["Michael Palin","John Cleese", "Terry Gilliam", "Eric Idle","Terry Jones"]]]
nester_nested.print_lol(movies)