python初入江湖 元祖tuple

2021-10-10 05:23:55 字數 803 閱讀 6242

# 元祖的定義

tup =(1

,2,3

)print

(tup)

>>

>(1

,2,3

)# 當定義乙個元祖其中只有乙個元素時,必須在後面加多乙個逗號,否則會變成賦值

tup =(1

)print

(tup)

>>

>

1tup =(1

,)print

(tup)

>>

>(1

,)# 元祖一旦定義就無法改變,不能增加,也不能改變元祖中元素的值,也不能刪除其中的元素

# 查tup =(1

,2,3

)tup.index(1)

>>

>

0print

(tup[2]

)>>

>

3# 查詢元祖的長度

print

(len

(tup)

)>>

>

3# 查詢元祖的最大值和最小值

print

(max

(tup)

)>>

>

3print

(min

(tup)

)>>

>

1# 刪除乙個已經定義的元祖

del(tup)

# 統計乙個元素在元祖中的個數

print

(tup(3)

)>>

>

1

python初入江湖 函式引數

預設引數 必選引數放在前面,預設引數放在後面,變化大的引數放在前面,變化小的引數放在後面 defmy pow x,n 2 s 1while n 0 n n 1 s s x return s my pow 3 9my pow 3,3 27def pupil name,gender,age 6,city...

GitHub 初入江湖

常見問題 github註冊 登陸 建立自己的repositories 複製專案的位址,備用 clone or download 單擊之後顯示 位址 開啟本地專案工程檔案 右擊,先擇git bash here 輸入 git clone git clone cloning into yijiazheng...

初入江湖 一

程式設計師的 就如同武林人士的武功一樣,那麼我們在開始修習 前先展示一段。初入江湖的少俠們請先以觀賞為主,後續我們慢慢到來!include 引用 easyx 圖形庫 include include mci 庫標頭檔案 pragma comment lib,winmm.lib intmain void...