Post

@clcoding Answer: 20 15 (on separate lines)
Solution: Quick recap,
a `while` loop's body is repeatedly executed until
the condition is condition remains truthy.
Here
num = 20
assigns the value 20 to `num`.
while num > 10:
...
This loop will execute as long as num>10
+
English

@clcoding Notice that the inequality is `>`, not `>=`.
So the condition is satisfied only when num is strictly greater than 10.
Currently num is 20, so the condition is satisfied.
Thus the loop executes
print(num)
prints 20 to the output.
num -= 5
deducts 5 from num.
So
+
English

