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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T10:52:58+00:00 2026-06-12T10:52:58+00:00

I would like to state that I am new to programming and to Python.

  • 0

I would like to state that I am new to programming and to Python. I did try doing research before posting this question but my lack of knowledge of even basics did not help yielding any results, thus requiring me to ask here.

I have two strings which are like:

 str_a = "100,101,105,304"
 str_b = "400,500,101"

I need to combine these strings into one so I use:

  str_c = str_a + "," + str_b

And my issue starts here. In this new string, where there are elements (numbers) separated by a comma, I want to have each item listed only once. The order of numbers do not matter but if it was ascending, it would be pretty amazing.

What can I do to combine these two, having each number listed once, if possible ordered small to large?

Since these are strings, I am not even sure if I can iterate through?

Your help will be greatly appreciated, thanks in advance.

  • 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-12T10:52:59+00:00Added an answer on June 12, 2026 at 10:52 am

    Try this:

    str_a = "100,101,105,304"
    str_b = "400,500,101,2000"
    l = str_a.split(',') + str_b.split(',')
    print ','.join(sorted(set(l), key=int))
    

    The output is:

    100,101,105,304,400,500,2000
    

    Thanks Oren for the comment! I’ve added key=int as an extra argument to sorted to compare the elements of the list as integers instead of strings. This argument allows one to specify a function of one argument that will be called on each element of the list to extract a comparison key. In our case, we use int to convert each element to an integer.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to state that the associated data is always an instance of
I would like to create a set of persistent objects that load their state
First of all I would like to state that I am a beginner at
Let me state up front, that sockets programming is fairly new to me. Also,
I have a dataset that looks something like this: IDnum State Product Consumption 123
I would like to save and restore the state of a WinForms Form ,
I would like to write a (HTML) parser based on state machine but I
I have a small JSF app and would like to keep some state on
Would like a for loop in jquery so that: For every hover_link: show hidden
I have a file log that I would like to parse and am having

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.