Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: While loop with condition that a list of strings contain a substring
Post: RE: While loop with condition that a list of strin...

Thanks, it works!
SnowingSilently General Coding Help 4 3,461 Sep-04-2018, 06:11 PM
    Thread: While loop with condition that a list of strings contain a substring
Post: RE: While loop with condition that a list of strin...

So if I have li = ['A','B','A','C'] while 'A' in li: print(li.pop(0))It should print A B A C. But if I have li = ['A1','B','A2','C'] while 'A' in li: print(li.pop(0))Nothing prints. But wha...
SnowingSilently General Coding Help 4 3,461 Sep-04-2018, 04:29 PM
    Thread: While loop with condition that a list of strings contain a substring
Post: While loop with condition that a list of strings c...

Let's say that I have li = ['A1','B','A2','C']How would I go about coding a while loop that runs while li contains 'A'?
SnowingSilently General Coding Help 4 3,461 Sep-04-2018, 07:51 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020