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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T10:47:28+00:00 2026-06-06T10:47:28+00:00

Can anyone find a more Python’ic, more beautiful solution? I’m looping through some text

  • 0

Can anyone find a more Python’ic, more beautiful solution?

I’m looping through some text lines in a file, to check if they meet certain criteria.
For some reason it was decided that separators internally in the line is ‘ ‘, i.e. double space.

How do I check a text string to verify that all separators are exactly two spaces?
Spaces at the end of the line is not an issue, as the line is initially .strip()’ed.

I have written this, and it works – but it’s ugly.
The code will be shown to some Python newbie’s, so I’m looking for a shorter, clearer and more beautiful solution…

ll = ["53.80  64-66-04.630N  52-16-15.355W 25-JUN-1993:16:48:34.00  S10293..  2",
      " 53.80  64-66-04.630N  52-16-15.355W  25-JUN-1993:16:48:34.00  S10293..  2",
      "53.80  64-66-04.630N  52-16-15.355W  25-JUN-1993:16:48:34.00  S10293..  2",
      "  53.80  64-66-04.630N  52-16-15.355W  25-JUN-1993:16:48:34.00  S10293..  2",
      "53.80  64-66-04.630N  52-16-15.355W  25-JUN-1993:16:48:34.00  S10293..  2 ",
      "53.80  64-66-04.630N  52-16-15.355W  25-JUN-1993:16:48:34.00  S10293..  2  ",
      "53.80  64-66-04.630N  52-16-15.355W   25-JUN-1993:16:48:34.00  S10293..  2"]

for ln in ll:
    l = ln.strip()
    bolDS = True
    for n in range(len(l)-1):
        if (n>0 and l[n]==' ' and not ((l[n]==l[n+1])^(l[n]==l[n-1]))):
            bolDS = False

    print "|"+l+"|",bolDS
  • 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-06T10:47:29+00:00Added an answer on June 6, 2026 at 10:47 am
    def is_doublespace_separated(input_string):
        return '  '.join(input_string.split()) == input_string.strip()
    

    This works because string.split will split your string on any whitespace. and string.join joins the list with the separator string. In this case, we use the separator ' ' (two spaces) to re-join your string and then compare it against the stripped version (I sense you already know what strip does).

    **This will ignore whitespace at the front of the string as well as at the end.

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

Sidebar

Related Questions

How can I find extended ASCII characters in a file using Perl? Can anyone
Does anyone know where i can find this python module 'contextlib'? root@overo:~# python Python
I can't seem to find an answer on google. Can anyone please check if
Can anyone find an example of a simple server/client thing? I'm willing to use
I am having trouble getting the jQuery easySlider working. Can anyone find where I
Can anyone help me find an up-to-date, working ATL project which has a main
Can anyone suggest where can I find good starter videos for ASP.NET MVC (other
Can anyone tell me how I can find out if an SPField object is
Can anyone explain how I can successfully get my processes communicating? I find the
Does anyone know where can I find recent data on PHP4 vs PHP5 market

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.