Hello,

I use windows notepad editor to write text.

For example I write (in d:\myfile.txt):
Helo
World

If I open it with python:
  FName = open(d:\myfile.txt,'r')
  h = FName.readlines()
  print h

I get h : ['Helo\n', 'World']

I thought notepad use \r\n to to end the line.

What's wrong with it?

pujo

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to