Python Forum
Correct py got error on another windows 7
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Correct py got error on another windows 7
#8
It's called chardetect on Windows,when used from command line.
E:\div_code
λ chardetect my.csv
my.csv: ascii with confidence 1.0
Not sure if that would help on this problem.
Quote:UnicodeEncodeError: 'latin-1' codec can't encode character '\ufeff' in position
\ufeff indicate that this file is saved with BOM(Byte order mark).

So usually should encoding='utf-8-sig' fix this.
>>> f = open('file', mode='r')
>>> f.read()
'\ufefftest'

>>> f = open('file', mode='r', encoding='utf-8-sig')
>>> f.read()
'test'
Not sure when you say Asia version of Windows that this happen on,what version of Python
Try in a errors='replace' in open to see what is replace,there is also errors="ignore"
open ("1.txt", "r", encoding="utf-8-sig", errors='replace')
Reply


Messages In This Thread
RE: Correct py got error on another windows 7 - by snippsat - Apr-25-2020, 02:49 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  "SSL: CERTIFICATE_VERIFY_FAILED” error on Python 3.9.6 (Windows 10) rcmv 4 3,830 May-10-2022, 01:18 PM
Last Post: rcmv
  how can I correct the Bad Request error on my curl request tomtom 8 5,262 Oct-03-2021, 06:32 AM
Last Post: tomtom
  error while installing any library using pip in windows AkashKansal 1 4,493 Sep-24-2020, 07:51 AM
Last Post: buran
  attribute error instead of correct output MaartenRo 2 2,278 Aug-28-2020, 10:22 AM
Last Post: Larz60+
  Python 3.7, Windows 7, Syntax Error hughdent 1 2,339 Mar-23-2020, 10:09 AM
Last Post: buran
  Getting the error like function not defined .. suggest correct code raghava 1 2,124 Feb-04-2020, 11:20 PM
Last Post: micseydel
  Error in compiling cython extension on Python 3.6.4 on Windows 8 goldenmean 3 5,892 Jun-05-2019, 09:37 PM
Last Post: Larz60+
  Windows 10 Task Scheduler Error mypython 1 2,545 Aug-11-2018, 11:01 PM
Last Post: ichabod801
  Windows cannot find "wish.exe" - error while trying to run PAGE Nwb 0 7,579 Jun-11-2018, 12:08 PM
Last Post: Nwb
  Error when creating child process on Windows 10 Charles 0 3,278 May-30-2018, 01:24 PM
Last Post: Charles

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020