Python **while** 语句用于循环执行程序,也就是在某条件下,循环执行某段程序, ... #!/usr/bin/python # continue 和break 用法 i = 1 while i < 10: i += 1 if i%2 > ...
確定! 回上一頁