pythonCopy max=4 counter=0 for a in range(max): if counter==3: print("counter value=3. Stop the for loop") break else: print("counter ...
確定! 回上一頁