Python學習筆記1 基礎

2022-07-15 09:57:12 字數 1749 閱讀 3619

1.編碼

預設情況下,python 3 原始碼檔案以 utf-8 編碼,所有字串都是 unicode 字串。

你也可以為原始檔指定不同的字元編碼。在 #! 行(首行)後插入至少一行特殊的注釋行來定義原始檔的編碼:

# -*- coding: utf-8 -*-

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

2.識別符號

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

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

識別符號對大小寫敏感。

3.python保留字

保留字即關鍵字,我們不能把它們用作任何識別符號名稱。python 的標準庫提供了乙個 keyword 模組,可以輸出當前版本的所有關鍵字:

>>> import keyword

>>> keyword.kwlist

['false', 'none', 'true', 'and', 'as', 'assert', 'async', 'await', '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']

>>>

4.注釋

python中單行注釋以 # 開頭,例項如下:

#!/usr/bin/python3

# -*- coding: utf-8 -*-

# first comment

print("hello world!")

python中使用三個雙引號或單引號來注釋多行內容,例項如下:

#!/usr/bin/python3

# -*- coding: utf-8 -*-

'''first comment

line 1

line 2

'''"""

second comment

line 1

line 2

"""print("hello world!")

5.縮排

python最具特色的就是使用縮進來表示**塊,不需要使用大括號 {} 。

縮排的空格數是可變的,但是同乙個**塊的語句必須包含相同的縮排空格數。例項如下:

if true:

print("this is true")

else:

print("this is false")

如果語句縮排數的空格數不一致,會導致執行錯誤:

if true:

print("this is true")

else:

print("this is false")

print("this is error") # error

indentationerror: unindent does not match any outer indentation level

Python基礎 學習筆記1

第八章 異常 1 注 這裡的迴圈只在沒有異常引發的情況下才會退出,而且使用expect exception,列印更加有用的資訊 while true try x input enter the first number y input enter the second number value x ...

python 基礎學習筆記(1)

init 初始化 init 方法在類的乙個物件被建立時,馬上執行。這個方法可以用來對你的物件做一些你希望的 初始化 解釋 當乙個class,稍微複雜一點的時候,或者內部函式需要用得到的時候,往往都需要在,別人例項化你這個類之前,使用你這個類之前,做一些基本的,與自己的類有關的,初始化方面的工作。而這...

python學習筆記(基礎 1)

python為我們提供了非常完善的基礎 庫,覆蓋了網路 檔案 gui 資料庫 文字等大量內容,被形象地稱作 內建電池 batteries included 1.python是解釋性語言,你的 在執行時會一行一行地翻譯成cpu能理解的機器碼,這個翻譯過程非常耗時,所以很慢。而c程式是執行前直接編譯成c...