python3 中有六個標準的資料型別:
number(數字)
string(字串)
list(列表)
tuple(元組)
set(集合)
dictionary(字典)
python3 的六個標準資料型別中:
不可變資料(3 個):number(數字)、string(字串)、tuple(元組);
可變資料(3 個):list(列表)、dictionary(字典)、set(集合)。
可以用 isinstance 來判斷資料型別,例如:
>>>a = 111
>>> isinstance(a, int)
true
>>>
數值運算:
>>>5 + 4 # 加法
9>>> 4.3 - 2 # 減法
2.3>>> 3 * 7 # 乘法
21>>> 2 / 4 # 除法,得到乙個浮點數
0.5>>> 2 // 4 # 除法,得到乙個整數
0>>> 17 % 3 # 取餘
2>>> 2 ** 5 # 乘方
32
leetcode學習筆記78 Subsets
subsets given an integer array nums,return all possible subsets the power set the solution set must not contain duplicate subsets.example 1 input nums...
蘋果開發 筆記(78)鍵盤
文字經常需要和鍵盤打交道,現在記錄一下初步的鍵盤相關的知識點。鍵盤出現和消失促發兩個訊息。uikeyboardwillshownotification 出現通知 uikeyboardwillhidenotification 隱藏通知 nsnotificationcenter 監聽兩個訊息即可捕捉到鍵...
ES 7 8 速成筆記 上
終端命令列直接輸入 elasticsearch 7.8.0 bin elasticsearch 即可啟動,停止的話直接kill程序。啟動成功後,可以瀏覽http localhost 9200 如果看出類似下面的輸出,就表示ok了 tagline you know,for search 二 安裝瀏覽器...