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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:01:59+00:00 2026-05-25T06:01:59+00:00

This might seem like a wierd requirement, but I am looking for a good

  • 0

This might seem like a wierd requirement, but I am looking for a good implementation to do this.

I have a dict like

vals = dict(red='#F00', green='#0F0', blue='#00F')

and a string like

tpl = '{red}:{green}:{blue}'

and the str.formatted output

output = tpl.format(**vals)

All is well till here. However, I now need to do the reverse of this. I have to turn a string like '#F00:#0F0:#00F' into a dict of the values that we previously started with. Of course, I could just split and strip the string and take the values I need, but it will fail in the event the tpl string should change.

Any good ideas on how I can do this (If it can even be done, that is)?

  • 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-25T06:02:00+00:00Added an answer on May 25, 2026 at 6:02 am

    You can use regular expressions. (And maybe then you’ll have two problems.)

    >>> import re
    >>> pattern = re.compile('(#[\da-fA-F]{3})')
    >>> l = pattern.findall(output)
    ['#F00', '#0F0', '#00F']
    >>> dict(zip(('red', 'green', 'blue'), l))
    {'blue': '#00F', 'green': '#0F0', 'red': '#F00'}
    >>>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This might seem like a simple question. But I have been looking for an
This might seem like a noddy question, but I was looking at this because
This might seem like a stupid question but I have always wondered. What would
This might seem like a weird question, but bear with me. I'd like to
This might seem like a trivial question, but I'm a bit muddled in my
This might sound like an obvious question but I can't seem to find the
This might seem like a silly question but valgrind doesn't by default give you
This might seem like an odd request but I'd like to use jQuery's Selectable
This might seem like a really dumb question, but I am writing an application
This might seem like a stupid question but it's been a long day. I'm

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.