with open('/etc/passwd', 'r') as handle:
    for line in handle:
        print line,

