Python continue 关键字 ... for i in range(9): if i == 5: continue print(i) ... continue 关键字用于在for 循环(或while 循环)中结束当前迭代,然后继续下一个 ...
確定! 回上一頁