Exercise: Create while-loop

Create a while-loop. Add the missing condition to print the expected output 100.
x = 0 # complete code here...
while
x += 10 print(x) # expected output: 100
Python
Setting up Python environment...
Output