循環forwhile和選擇if else及break

課程學習筆記總結補充代碼段 count = 0 while (count < 9): print ‘The count is:’, count count = count + 1 print 「Good bye!」 continue 和 break 用法 i = 1 while i < 10: i += 1 if i%2 > 0: # 非雙數時跳過輸出 continue print i # 輸出雙
相關文章
相關標籤/搜索