Write the following code using for loop var i =10;
while (i>=1)
{
Document write (i)
I - -;
}
Answers
Answered by
2
Answer:
The body of the loop is entered only if the test_expression evaluates to True . After one iteration, the test expression is checked again. This process continues until the test_expression evaluates to False . In Python, the body of the while loop is determined through indentation.
Similar questions
Social Sciences,
7 months ago
Social Sciences,
7 months ago
Hindi,
1 year ago
Math,
1 year ago
Biology,
1 year ago