對python符號的理解

2021-08-15 23:53:35 字數 1482 閱讀 5669

keywords

• and     邏輯算符 和

• del       刪除後面的變數

• from     

• not       相反

• while    while迴圈

• as     

• elif       elseif

• global    定義為全域性變數

• or         邏輯算符 或

• with    

• assert  

• else     其他

• if       if條件判斷

• pass

• yield

• break

• except

• import

• print     列印

• class     

• exec 

• in

• raise

• continue 

• finally

• is 

• return    返回值

• def    定義函式

• for    for迴圈

.lambda

.try

針對每一種資料型別,都舉出一些例子來,例如針對 string,你可以舉出一些字串, 針對 number,你可以舉出一些數字。 

• true        1

• false      0

• none

• strings

• numbers

• floats 

• lists

對於字串轉義序列,你需要再字串中應用它們,確認自己清楚地知道它們的功

能。• \a 

• \b       back

• \f 

• \n    空一行

• \r 

• \t       空乙個tab

• \v

的,在字串中使用它們,確認它們的功能。

• %d     整數

• %i     

• %o    

• %u  

• %x

• %x 

• %e

• %e 

• %f 

• %f 

• %g 

• %g

• %c 

• %r      任意

• %s 

• %%

有些操作符號你可能還不熟悉,不過還是一一看過去,研究一下它們的功能,如果你 研究不出來也沒關係,記錄下來日後解決。

• + • 

• <      小於

• >      大於

• <=    小於等於

• >=     大於等於

• ==     等於

• !=     不等於

• [ ]     list

python中對 init 的理解

一 self的位置是出現在 首先,self是在類的方法中的,在呼叫此方法時,不用給self賦值,python會自動給他賦值,而且這個值就是類的例項 物件本身。也可以將self換成別的叫法例如seef,但不建議,因為大家習慣也預設了寫成self。二 self的值是什麼?self的值是python會自動...

自己對Python 類的理解

class pet object 父類 類屬性 speed grow 0.02 def init self,age age 物件屬性 self.age age 類方法 classmethod defgrowth cls,time return cls.speed grow time 靜態方法 sta...

python中對切片的理解

字串還支援 切片。索引可以提取單個字元,切片 則提取子字串 word 0 2 characters from position 0 included to 2 excluded py word 2 5 characters from position 2 included to 5 excluded...