Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7854335
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T20:01:57+00:00 2026-06-02T20:01:57+00:00

I am working on the exel parsing using python. till now I have worked

  • 0

I am working on the exel parsing using python.
till now I have worked with english language but when I encounter the regional languages, I am getting the error.

example :

IR05 měsíční (monthly)

It gives me the error as

UnicodeEncodeError: 'ascii' codec can't encode character u'\u011b' in position 6: ordinal not in range(128)

how I can parse it and I can again write in same language in output files?

my code :

for j in val:
    print 'j is - ', j
    str(j).replace("'", "")

I am getting error at replace statement.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T20:01:59+00:00Added an answer on June 2, 2026 at 8:01 pm
    >>> "IR05 měsíční (monthly)".decode('utf8')
    u'IR05 m\u011bs\xed\u010dn\xed (monthly)'
    

    which is a unicode version of your original string (which was encoded in utf8).

    Now you can compare it to your other string (from the file), which you decode (from utf8 or latin2 or a different format) and you can compare them.

    >>> 'IR05 m\xecs\xed\xe8n\xed (monthly)'.decode('latin2')
    u'IR05 m\u011bs\xed\u010dn\xed (monthly)'
    

    now you can compare the two unicode strings:

    >>> s_utf8 = "IR05 měsíční (monthly)"
    >>> s_latin2 = 'IR05 m\xecs\xed\xe8n\xed (monthly)'
    >>> s_utf8.decode('utf8') == s_latin2.decode('latin2')
    True
    

    To write the string into a file, encode it again:

    >>> s = s_utf8.decode('utf8')
    
    >>> filehandle.write(s.encode('utf8'))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Working on a console application using Delphi 7, and have run into a problem.
Working on a website that has Employee and Branch entities, using a database table
Working on a new app and using restful-authentication. I was trying to make it
I've been trying to get the MSBuild Extensions Pack GAC utility working but keep
Working sample using one Table SELECT t.* FROM ( SELECT TITLE.name, (TITLE.value-TITLE.msp) AS Lower,
Working example: http://alpha.jsfiddle.net/gTpWv/ Both of the methods work separately, but once regexp for smilies
Working with a Lucene index, I have a standard document format that looks something
Working in Java: I have a JFrame class, and separate classes for my two
Working with some basic java apps on CentOS 5 linux and I have my
Working with jquery.ajax for first time... I have a class in C#: public class

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.