While Loop
• While loop is like a for loop only difference is
the for loop has a certain limit For an
instance from 10 to 50
• But in the while loop we say until a specific
condition is true the loop will continue even if
it means forever
WHILE LOOP IN PSEUDOCODES
WHILE condition DO
Statement
END WHILE
EG-
WHILE x==“hi” DO
Print(“HI”)
END WHILE
WHILE LOOP IN python
While condition
Rashmitha.J grade 9/10 edexcel
Computing
Statement
MAS | MAS Only
For an instance
While x==“hi”
Print(“bye”)
Rashmitha.J grade 9/10 edexcel
Computing
MAS | MAS Only
Rashmitha.J grade 9/10 edexcel
Computing