Top "While-loop" questions

A while loop is a control structure used in many programming languages to continuously execute a set of instructions as long as a particular condition is met.

Emulate a do-while loop in Python?

I need to emulate a do-while loop in a Python program. Unfortunately, the following straightforward code does not work: list_…

python while-loop do-while
Syntax for a single-line Bash infinite while loop

I am having trouble coming up with the right combination of semicolons and/or braces. I'd like to do this, …

bash loops while-loop
Do while loop in SQL Server 2008

Is there any method for implement do while loop in SQL server 2008?

sql-server sql-server-2008 loops while-loop do-while
How do I plot in real-time in a while loop using matplotlib?

I am trying to plot some data from a camera in real time using OpenCV. However, the real-time plotting (using …

python matplotlib while-loop real-time
ORA-06502: PL/SQL: numeric or value error: character string buffer too small

I tried the following code different ways, like by taking out the while or the if, but when I put …

sql oracle if-statement plsql while-loop
How do I exit a while loop in Java?

What is the best way to exit/terminate a while loop in Java? For example, my code is currently as …

java while-loop exit break
While loop in batch

Here is what I want, inside the BACKUPDIR, I want to execute cscript /nologo c:\deletefile.vbs %BACKUPDIR% until number …

windows batch-file for-loop while-loop
Break out of a While...Wend loop

I am using a While...Wend loop of VBA. Dim count as Integer While True count=count+1 If count = 10 Then …

excel vba while-loop
How to check if all elements of a list matches a condition?

I have a list consisting of like 20000 lists. I use each list's 3rd element as a flag. I want to …

python list for-loop while-loop
Why is “while ( !feof (file) )” always wrong?

I've seen people trying to read files like this in a lot of posts lately: #include <stdio.h> #…

c file while-loop eof feof