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 7991699
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T13:22:02+00:00 2026-06-04T13:22:02+00:00

Possible Duplicate: Converting a latin string to unicode in python I have a list

  • 0

Possible Duplicate:
Converting a latin string to unicode in python

I have a list with the following format after storing in a file

list_example = [
         u"\u00cdndia, Tail\u00e2ndia & Cingapura",
         u"Lines through the days 1 (Arabic) \u0633\u0637\u0648\u0631 \u0639\u0628\u0631 \u0627\u0644\u0623\u064a\u0627\u0645 1",
]

But the actual format of the strings in the list is

actual_format = [
         "Índia, Tailândia & Cingapura ",
         "Lines through the days 1 (Arabic) سطور عبر الأيام 1 | شمس الدين خ "
]

How can I convert the strings in list_example to strings present in the actual_format list?

  • 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-04T13:22:04+00:00Added an answer on June 4, 2026 at 1:22 pm

    Your question is a bit unclear to me. In any case, the following guidelines should help you solving your problem.

    If you define those strings in a Python source code, then you should

    • know in which character encoding your editor saves the source code file (e.g. utf-8)
    • declare that encoding in the first line of your source file, via e.g. # -*- coding: utf-8 -*-
    • define those strings as unicode objects:

    strings = [u"Índia, Tailândia & Cingapura ", u"Lines through the days 1 (Arabic) سطور عبر الأيام 1 | شمس الدين خ "]

    (Note: in Python 3, literal strings are unicode objects by default, i.e. you don’t need the u. In Python 2, unicode strings are of type unicode, in Python 3, unicode strings are of type string.)

    When you then want to save those strings to a file, you should explicitly define the character encoding:

    with open('filename', 'w') as f:
        s = '\n'.join(strings)
        f.write(s.encode('utf-8'))
    

    When you then want to read those strings again from that file, you again have to explicitly define the character encoding in order to decode the file contents properly:

    with open('filename') as f:
        strings = [l.decode('utf-8') for line in f]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Converting unix timestamp string to readable date in Python I have a
Possible Duplicate: Converting string to MySQL timestamp format in php Given a date in
Possible Duplicate: Converting date From one format to another I have a date, for
Possible Duplicate: Converting a string that represents a list, into an actual list object.
Possible Duplicate: Converting HTML files to PDF I have HTML in java string and
Possible Duplicate: Converting XML to JSON using Python? I'm doing some work on App
Possible Duplicate: Converting string in C# I want to camelize a string, for example:
Possible Duplicate: Converting Seconds to HH:MM:SS I have an integer as a number of
Possible Duplicate: Converting Timestamp as String to Date in android My server is returning
Possible Duplicate: Converting a string to an enumeration value in C# How do I

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.