标签:
If we do not know exactly how many times the loop will circle, but we do know the condition keeping the loop circlling, we can use:
while condition:
action
Break action
there is no:
do
until condition
in python at the moment.
标签:
原文地址:http://www.cnblogs.com/lmliu/p/5560273.html