Python 的while 迴圈中,有一個與break 敘述相對的,就是continue —— 跳回到迴圈的頂部繼續循環,而不是停止循環。 i = 1 #初始值while True: print(i) i ...
確定! 回上一頁