基本語法
型別
Number 數字 String 字串 boolean 布林 List 列表 Tuple 元組 Dictionary 字典 (Map)
列表
字典
和 List 用 [] 來包資料不同 Dictionary 是用 {}
讀取使用者的輸入內容
不管使用者輸入什麼,都是字串型別 input()
Number to String
str()
String to Integer
int()
String to float
float()
Boolean
Python 的 True False 都要大寫
&& => and || => or ! => not
要如何宣告 function
前面加 def 後面要加冒號 要縮排
迴圈
參考資料:(https://sites.google.com/site/zsgititit/home/python-cheng-shi-she-ji/python-de-hui-quan-jie-gou)
For
python 是利用縮排,去決定程式的區塊 所以只有指令區的會重複,指令區2的就只有一次
range(5) => 1 ~ 5
range(2,6) => 2~5
range(2,10,2) => 2, 4, 6, 8
while
Last updated