iT邦幫忙

2022 iThome 鐵人賽

DAY 6
0
自我挑戰組

Python簡單應用系列 第 6

Day 6 - Python基本迴圈part3

  • 分享至 

  • xImage
  •  

上次說到這篇我們要來介紹while不同的操作
我們先來介紹第一個else
用else可以讓你知道你的結果已經不符合條件了

例如今天帶了100員只能買10顆糖果

i = 1
while i < 11:
    print(i)
    i += 1
else:
    print('Your money is not enough.')
```![https://ithelp.ithome.com.tw/upload/images/20220917/201519381L2Aot2jma.jpg](https://ithelp.ithome.com.tw/upload/images/20220917/201519381L2Aot2jma.jpg)

接下來來介紹第二個**break**
學過C/C++的都知道,這代表跳出迴圈,只要在迴圈內碰到它,就會立馬跳出

例如

i = 1
while True:
print(i)
i += 1
if i % 5 == 0
break
print('This number is a multiple of five')

![https://ithelp.ithome.com.tw/upload/images/20220917/20151938MjVNi9Ggh4.jpg](https://ithelp.ithome.com.tw/upload/images/20220917/20151938MjVNi9Ggh4.jpg)

上一篇
Day 5 -Python基本迴圈 part2
下一篇
Day 7 - Python條件判斷、建立函數
系列文
Python簡單應用30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言