ryguy7272 <ryanshu...@gmail.com> writes: > text_file = open("C:/Users/rshuell001/Desktop/excel/Text1.txt", "wb")
Remove the "b" from this line. This is causing it to omit the platform-specific translation of "\n", which means some Windows applications will not recognize the line endings. -- https://mail.python.org/mailman/listinfo/python-list