Question: Python Use a while loop to print all numbers from 1 to 10 which are divisible by 3. Use a while loop and if statement.
Python
Use a while loop to print all numbers from 1 to 10 which are divisible by 3. Use a while loop and if statement.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
I have this so far: x = 0 while x < 10: x += 1 print(x)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
