python002 Python3 基礎語法

2021-08-04 12:28:32 字數 809 閱讀 2967

編碼

預設情況下,python 3 原始碼檔案以 utf-8 編碼,所有字串都是 unicode 字串。 當然你也可以為原始碼檔案指定不同的編碼:

# -*- coding: cp-1252 -*-

識別符號

第乙個字元必須是字母表中字母或下劃線'_'。

識別符號的其他的部分有字母、數字和下劃線組成。

識別符號對大小寫敏感。

在python 3中,非-ascii 識別符號也是允許的了。

python保留字

保留字即關鍵字,我們不能把它們用作任何識別符號名稱。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', 'retu

rn', 'try', 'while', 'with', 'yield']

>>>

Python學習筆記002

002講2020 7 7 第乙個遊戲程式 print 我愛魚c工作室 temp input 不妨猜一下小甲魚現在心裡想的是哪個數字 guess int temp if guess 8 print 恭喜你,猜對了 print 猜中了也沒有獎勵哦 else print 猜錯啦,我現在小甲魚現在心裡想的是...

python基本語法002

函式 不建立類的情況下定義乙個語句體 print def函式 def add a,b return a b c add 3 5 print c def add a 1,b 1 return a b c add print c 函式,對a傳參 def add a 1,b 1 return a b c ...

Python筆記002 Python程式設計基礎概念

python 程式有模組組成。乙個模組對應 python 原始檔,一般字尾名是 py。模組有語句組成。執行 python程式時,按照模組中語句的順序依次執行。語句是 python 程式的構造單元,用於建立物件 變數複製 呼叫函式 控制語句等。的組織與縮排 很多程式語言通過字元 例如 花括號 關鍵字 ...