變數
關鍵字注釋
斷言輸入輸出
變數名只能是 字母、數字或下劃線的任意組合變數名的第乙個字元不能是數字
約定俗成是用全部大寫的變數名表示常量
python 的標準庫提供了乙個 keyword 模組,可以輸出當前版本的所有關鍵字。
import keyword
>>
> keyword.kwlist
['false'
,'none'
,'true'
,'and'
,'as'
,'assert'
,'break'
,'class'
,'continue'
,'def'
,'del'
,'elif'
,'else'
,'except'
,'finally'
,'for'
,'from'
,'global'
,'if'
,'import'
,'in'
,'is'
,'lambda'
,'nonlocal'
,'not'
,'or'
,'pass'
,'raise'
,'return'
,'try'
,'while'
,'with'
,'yield'
]
python中的注釋有單行注釋和多行注釋:
單行注釋以 # 開頭
多行注釋用三個單引號 ''' 或者三個雙引號 """ 將注釋括起來
assert(斷言)用於判斷乙個表示式,在表示式條件為 false 的時候觸 發異常。
語法:
assert expression # expression為表示式
例子:>>
>
assert1==
1# 條件為 true 正常執行
>>
>
assert1==
2# 條件為 false 觸發異常
traceback (most recent call last)
: file ""
, line 1,in
assertionerror
1、輸入函式:input()2、輸出函式:print()
input 語法
stdin =
input
('請輸入:'
)# 括號內可以輸入顯示到螢幕上的提示資訊,返回值時字串型別
print 語法
print
(value,..
., sep=
' ', end=
'\n'
,file
=sys.stdout, flush=
false
)print 的引數說明:
1. sep:值與值之間的符號,預設為空字元,指定end即可更改結尾字元
2. end:結尾預設為換行符,預設為換行符,指定end即可更改結尾字元 3.
file:指定輸出目錄,預設為控制台,可將結果輸入到檔案裡
4. flush:輸出是否被快取通常決定於 file,但如果 flush 關鍵字引數為 true,流會被強制重新整理
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...