参考看两个例子对比:#例一:在while中的breaknum_0 = 6num_1 = 1while num_1 <= 12: if num_1 == num_0: print("break the loop") break num_1 += 1 ...
確定! 回上一頁