1.python 基礎知識
idle 整合開發工具
注釋方法
快捷鍵 ctrl+/
行的注釋數最大字元數:79
輸出》print("hell,word!") 字串單雙引號,混合也可以
>>>print(『hell,word!』)
>>>print('aa\nbb') aa 換行 bb
>>>print(『hell『,』word!』)
>>>print(『hell『 』word!』)
>>> print(a)
str字串不能和字串相加,減
顯示為age:10
方法二:
輸出name=小明,age=12
方法二方法三
方法四字串轉譯
str02="%%%s"
運算子比較運算子(<、>、=、!=)
邏輯運算子(and 、or 、not(取放)、is not)
賦值運算子(= 、+=、-=、*=、/=;)
成員運算子 in
位運算子(>>、<<、&、|、^)
Python 基礎知識
來自 一 識別符號 1.python 中的識別符號是區分大小寫的。2.標示符以字母或下劃線開頭,可包括字母,下劃線和數字。3.以下劃線開頭的識別符號是有特殊意義的。以單下劃線開頭 foo 的代表不能直接訪問的類屬性,需通過類提供的介面進行訪問,不能用 from import 而匯入 以雙下劃線開頭的...
python基礎知識
一.隨機數的生成 都需要 import random 1.用於生成乙個指定範圍內的隨機浮點數。print random.uniform 10,20 print random.uniform 20,10 2.生成乙個指定範圍內的整數。下限必須小於上限制 print random.randint 12,...
python基礎知識
py基礎學習 1.命令列輸入python命令式,例如python test.py c m install sys.argv test.py c m install 2.切片,str 0 5 1 含頭不含尾,表示倒序切 3.unicode和encode unicode str,utf 8 將utf 8...