我們這次來看 while
迴圈吧 !!
While 迴圈怎麼寫?
1 | count = 0 |
2 | while count <= 5: |
3 | print(count) |
4 | count+=1 |
5 | ---------------執行結果--------------- |
6 | 0 |
7 | 1 |
8 | 2 |
9 | 3 |
10 | 4 |
11 | 5 |
只要 while 為 True,就會一直執行不會中斷,等到 count <= 5 為 False 就會停止。
字典和 list 類似,不同的是字典不會用[1]、[100]這種 index 來選擇項目。
字典是一個 key(鍵)-value(值) 的數據類型,每個 key 都是獨一無二
。
1 | student ={ |
2 | 'stud0001':'Mike', |
3 | 'stud0002':'Jenny', |
4 | 'stud0003':'Tom', |
5 | 'stud0004':'Bob', |
6 | } |
7 | print(student) |
8 | |
9 | ---------------執行結果--------------- |
10 | {'stud0001': 'Mike', 'stud0003': 'Tom', 'stud0002': 'Jenny', 'stud0004': 'Bob'} |
今天來了解一下 Python 的變數,他有些地方和 C 語言有所不同。
了解變數之前,我們需要先了解一下 Python 物件這個概念。
在 Python 中,所有東西,像是 boolean、int、float、string 等等,甚至是 function 都是由物件(object)來實作。
物件就像是一個盒子,而盒子裡面包含了很多資料,像是他的值、可以使用的 function ,最重要的是他的 type。
type 的功用就是決定他裡面的資料是用來做什麼的,像是盒子外面貼個標籤說這裡面是蘋果。在 Python 中,如果有個物件他的 type 是 string,我們就可以知道裡面的 value 是存放一個字串,並且有 isdigit()、split()等等 function 可以使用。