Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem with character sets
#5
(Mar-04-2019, 02:09 AM)Pedroski55 Wrote: file = open(path + 'page1', 'w')
You have to set encoding like i did in my post,and use with open then no need to use close()
file = open(path + 'page1', 'w', encoding='utf-8')
Quote:I also think, Python saves as UTF-8 by default
No this can fail in many ways depend on environment(editor/Treminal,ect..) or OS,
so set always encoding especially if you get wrong result.

Quote:How should I actually save line??
Should maybe not needed if do set encoding as shown over.
Basic stuff you use a variable,then eg save/read as i show in my post
data = '»Æ¹ûÊ÷'
text_ch = data.encode('latin1').decode('gb2312')
Reply


Messages In This Thread
Problem with character sets - by Pedroski55 - Mar-03-2019, 12:31 AM
RE: Problem with character sets - by Pedroski55 - Mar-03-2019, 11:54 PM
RE: Problem with character sets - by snippsat - Mar-04-2019, 12:25 AM
RE: Problem with character sets - by Pedroski55 - Mar-04-2019, 02:09 AM
RE: Problem with character sets - by snippsat - Mar-04-2019, 02:35 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Peculiar pattern from printing of sets SahandJ 7 1,675 Dec-29-2021, 06:31 PM
Last Post: bowlofred
  How does one combine 2 data sets ? detlefschmitt 2 1,699 Sep-03-2021, 03:38 AM
Last Post: detlefschmitt
  [solved] unexpected character after line continuation character paul18fr 4 3,419 Jun-22-2021, 03:22 PM
Last Post: deanhystad
  Looping Through Large Data Sets JoeDainton123 10 4,400 Oct-18-2020, 02:58 PM
Last Post: buran
  comprehension for sets Skaperen 2 1,872 Aug-07-2020, 10:12 PM
Last Post: Skaperen
  SyntaxError: unexpected character after line continuation character siteshkumar 2 3,187 Jul-13-2020, 07:05 PM
Last Post: snippsat
  how can i handle "expected a character " type error , when I input no character vivekagrey 2 2,757 Jan-05-2020, 11:50 AM
Last Post: vivekagrey
  Sort sets by item values Sergey 4 70,509 Apr-19-2019, 10:50 AM
Last Post: Sergey
  Replace changing string including uppercase character with lowercase character silfer 11 6,217 Mar-25-2019, 12:54 PM
Last Post: silfer
  merge 3 sql data sets to 1 librairy brecht83 0 2,119 Sep-26-2018, 10:13 PM
Last Post: brecht83

Forum Jump:

User Panel Messages

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