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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:24:49+00:00 2026-05-31T19:24:49+00:00

I’m looking for an answer to this problem: I’m running through a loop testing

  • 0

I’m looking for an answer to this problem:
I’m running through a loop testing for a condition every time (if data[i] is red), and when a value of the array is red i print something but if the next value (data[i+1]) isn’t red, i want to print something else to the rest of the line without testing if any next point is red or not. So my code was looking a little bit like this.

For i in range (0, 64) :
If data[i] = red :
Print '#'
If data[i+1] != red :
#here i want to print '.' for the rest of the line without testing anything and getting out of the loop
Else : 
print '#'
Else :
print '.'

And i don’t know what to put to make this code work.

For example if in my array there is :
data[i] = red, data[i+1] = blank, data[i+2] = red. I want to remove second red. I want to print the rest of the array blank, without testing if it’s red after a blank space.
I’m gonna use the algorithm in image processing. I’ve got two balls, one on the left and one on the right. This algorithm is gonna remove the one on the right entirely.

  • 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-31T19:24:50+00:00Added an answer on May 31, 2026 at 7:24 pm

    Print '#' if red else print '.'. If encounted sequence red, not red then print '.' for the rest of the array:

    prev = None
    it = iter(data)
    for point in it:
        if point == 'red':
           print '#',
        else:
           print '.',
           if prev == 'red': # encounted ['red', 'blank']
              break
        prev = point
    
    for point in it:
        print '.',
    print
    

    Example

    blank blank red red blank red blank red red
    . . # # . . . . .
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I am currently running into a problem where an element is coming back from
I have some data like this: 1 2 3 4 5 9 2 6
I am trying to loop through a bunch of documents I have to put
I have a jquery bug and I've been looking for hours now, I can't
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.

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.