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

  • Home
  • SEARCH
  • 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 7008615
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:45:29+00:00 2026-05-27T21:45:29+00:00

Hello i am trying to do a dictionary by using Python, What needs to

  • 0

Hello i am trying to do a dictionary by using Python,
What needs to be done is python reads a text file which has values inside such as:

good    buono

What I have done was, open the file with file function and replace tabs and add reversed comma to create a list so it looks like

["('good', 'buono')", "('afternoon', 'pomeriggo')",... and so on

but the problem is type of each word translation is not a tuple, it is string when I am trying to see 1st element(number 0) it shows me the value as

"('good', 'buono')"

which is a string. I need to use dict formula so that i can convert the type into dictionary but I cannot because it is list of strings(has to be list of tuples)

So how can I convert that list of strings into list of tuples?

  • 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-05-27T21:45:30+00:00Added an answer on May 27, 2026 at 9:45 pm

    Assuming that every pair of words is on a separate line in your file, you could do this:

    mydict = {line.split()[0]: line.split()[1] for line in myfile}
    

    This transforms a file like

    good    buono
    afternoon   pomeriggo
    thanks    grazie
    

    into

    {"good": "buono", "afternoon": "pomeriggo", "thanks": "grazie"}
    

    No need for tuples along the way.

    .split() splits the input string on whitespace, removing any leading/trailing whitespace:

    >>> "  good\tbuono  \n".split()
    ['good', 'buono']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello I am trying define values of a dictionary in parallel using multiprocessing. When
Hello i am trying to find out how can i print a file which
Hello I am trying to Concatenate the values of a Dictionary. The thing that
hello I am trying to load coordinates for plotting from a text file and
Hello I'm trying to create text boxes dynamically using for loop and want to
Hello I am trying to setup a Padrino project using DataMapper and MySQL on
Hello I am trying to use a NSPopUpButtonCell inside an NSTableView. Basically when you
Hello I am trying to write these python lines in a single line but
Hello I am trying to get text to display like it does in terminal
Hello iam trying to store sum information inside a SQL Server table , but

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.