csc1001 lecture2
** 平方
% 取餘數
x += 3 #等於x = x + 3
type() #檢驗資料型別
>>> divmod(57, 20)
(2, 17)
int(),float() #改變量值型別
input()函式返回 字串型別 資料
eval()函式 把字串轉為數值,常用eval(input( ))
list用來表示
>>> friends = ['joy', 'zion', 'kim']
>>>print( frineds[1])
zion #python從0開始計數
tuple() #和list一樣,但是用(),且不可改變、
boolean type #true or false
0 represents false, other numbers represent true
bool()
>>> x=, y=[0], z= '0'
>>> bool(x), bool(y), bool(z)
(false, true, true)
比較字串大小,則比較第乙個字母ascii碼大小,aa
a的ascii碼是65,『a』 != 65, ord(『a』)=65, 『a』 = chr(65)
try/except
astr = 'hello'
try:
istr = int(astr)
except:
istr = -1
is和==:is比較是否是同乙個物件,==比較值
>>> a = [1,2,3]
>>> b = [1,2,3]
>>> print (a is b)
false
>>> a==b
true
-----------------
>>> a = b = [1,2,3]
>>> print (a is b)
true
range函式
range(6)對應0 1 2 3 4 5
range(2,6)對應2 3 4 5
range(2,14,3)對應2 5 8 11
for和else連用,當for迴圈結束else執行
for x in range(6):
print(x)
else:
print("finally finished!")
continue 回到while,break結束while
while ***:
if ***: continue
if ***:
break
python教學筆記 python學習筆記(一)
1.eval 函式 eval是單詞evaluate的縮寫,就是 求.的值的意思。eval 函式的作用是把str轉換成list,dict,tuple.li 1 1,2,3 print eval li 1 di 1 print eval di 1 tu 1 2,4,6 print eval tu 1 執...
python學習筆記
coding utf 8 coding utf 8 應該像八股文一樣在每個指令碼的頭部宣告,這是個忠告 為了解決中文相容問題,同時你應該選擇支援 unicode 編碼的編輯器環境,保證在執行指令碼中的每個漢字都是使用 utf 8 編碼過的。cdays 5 exercise 3.py 求0 100之間...
Python 學習筆記
python 學習筆記 def run print running.def execute method method execute run result running.condition false test yes,is true if condition else no,is false ...