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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T13:50:24+00:00 2026-06-17T13:50:24+00:00

For example, I got a tuple a = (‘chicken’, 1, ‘lemon’, ‘watermelon’, ‘camel’) I

  • 0

For example, I got a tuple

a = ('chicken', 1, 'lemon', 'watermelon', 'camel')

I want to build a new tuple b from a but change a little bit

d = {0: 'apple', 1: 'banana', 2: 'lemon', 3: 'watermelon'}

b = (a[0], d[a[1]], a[2], a[3], a[4])

another way to do it

b = list(a)
b[1] = d[b[1]]
b = tuple(b)

All of them work, but look silly.

Is there another elegant way to do this job? or are there some skills to modify the original tuple?

  • 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-17T13:50:25+00:00Added an answer on June 17, 2026 at 1:50 pm

    This is a bit inefficient in comparison to yours because it does a check on every item, but the general idea is that it looks at each item in your a, checks for a matching key in d and if it finds one, returns the value at that key. If no key is found, the original item is returned:

    In [1]: a = ('chicken',1,'lemon','watermelon','camel')
    
    In [2]: d = {0:'apple',1:'banana',2:'lemon',3:'watermelon'}
    
    In [3]: b = tuple(d.get(x, x) for x in a)
    
    In [4]: b
    Out[4]: ('chicken', 'banana', 'lemon', 'watermelon', 'camel')
    
    In [5]: type(b)
    Out[5]: <type 'tuple'>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

thank you for looking i got this example from my book but i cant
Below is the example I got from google finance for a stock quote. But
I've got an example from documentation for Text.Parsec.Expr . expr = buildExpressionParser table term
The below example is got from Jon Skeet's article, Parameter passing in C# .
I followed this example and got it worked. Now I want to show a
I have here is an example directly got from express document. app.use(express.cookieParser()); app.use(express.session({ secret:
Below is an example I got from someone's blog about python closure. I run
I'm trying to use a KVO example I got from an iPhone tutorial book,
I don't know if this is properly expressed but here's the example: I got
I'm trying to use https://github.com/chrisbanes/Android-PullToRefresh/ . I followed the example but got the error

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.