你要偷偷學Python,然後驚豔所有人(元組)

2021-10-10 05:52:56 字數 1997 閱讀 4629

定義乙個簡單的元組

info_tuple=

("zhangsan",18

,1.75

)print

(info_tuple)

print

(info_tuple[0]

)print

(info_tuple[1]

)print

(info_tuple[2]

)#結果

('zhangsan',18

,1.75

)zhangsan

181.75

定義乙個空元組

empty_tuple=

()

定義只包含乙個元素的元組

#根據結果知道這是不對的

single_tuole=(5

)print

(type

(single_tuole)

)#結果

<

class

'int'

>

#這種定義方式才是定義單元素元組的正確方式

single_tuole=(5

,)print

(type

(single_tuole)

)#結果

<

class

'tuple'

>

元組的常用操作

取元組中元素的索引(利用元素值獲取索引)

info_tuple=

("zhangsan",18

,1.75

)print

(info_tuple.index(

'zhangsan'))

print

(info_tuple.index(18)

)#結果

01

獲取元組中某個元素的個數

info_tuple=

("zhangsan",18

,1.75,18

)print

(info_tuple.count(

'zhangsan'))

print

(info_tuple.count(18)

)#結果

12

獲取元組中元素的總個數

info_tuple=

("zhangsan",18

,1.75,18

)print

(len

(info_tuple)

)#結果

4

元組元素的迴圈遍歷

info_tuple=

("zhangsan",18

,1.75,18

)for i in info_tuple:

print

(i)#結果

zhangsan

181.75

18

列表和元組的相互轉換

num_list=[1

,2,3

,4]print

(type

(num_list)

)num_list=

tuple

(num_list)

print

(type

(num_list)

)num_list=

list

(num_list)

print

(type

(num_list)

)#結果

<

class

'list'

>

<

class

'tuple'

>

<

class

'list'

>

你要偷偷學Python,然後驚豔所有人(異常)

1 異常的概念 2 捕獲異常 2.1 簡單的捕獲異常語法 try 嘗試執行的 except 出現錯誤的處理 簡單異常捕獲演練 要求使用者輸入整數 try 提示使用者輸入乙個數字 num int input 請輸入數字 except print 請輸入正確的數字 2.2 錯誤型別捕獲 try 嘗試執行...

你要悄悄變優秀,然後驚豔所有人

新年新氣象 距離 2020 年的餘額已經不足乙個月了 移動開發平台 mpaas 在控制台介面上 也進行了全新的改版 精細的打磨 只為能夠為廣大開發者使用者 提供清爽流暢的使用者體驗 和更明朗的元件使用流程 基礎元件 mcdp 智慧型投放 控制台主介面進行優化,通過 banner 內容方陣 的方式,減...

我在偷偷學Python的第二十三天(物件導向)

python從設計之初就已經是一門物件導向的語言,正因為如此,在python中建立乙個類和物件是很容易的。本章節我們將詳細介紹python的物件導向程式設計。如果你以前沒有接觸過物件導向的程式語言,那你可能需要先了解一些物件導向語言的一些基本特徵,在頭腦裡頭形成乙個基本的物件導向的概念,這樣有助於你...