While loop Reminder, 餘數
x=10
while x>= 0:
x=x-1 #controller, otherwise 無限loop
if x%2:# %:Remainder, 餘數
continue
if x==4:
break #end loop
print(x)
INFO
x=10
while x>= 0:
x=x-1 #controller, otherwise 無限loop
if x%2:# %:Remainder, 餘數
continue
if x==4:
break #end loop
print(x)