91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中的元組介紹

發布時間:2020-09-17 07:49:24 來源:腳本之家 閱讀:159 作者:Mr.o.j 欄目:開發技術

1.元組的創建

元組(tuple):元組本身是不可變數據類型,沒有增刪改查

元組內可以存儲任意數據類型

t = (1,2.3,True,'star')   ##例如這里面有數字,波爾值,和字符
print(t)
print(type(t))

Python中的元組介紹

元組里面包含可變數據類型,可以間接修改元組的內容

t1 = ([1,2,3],4)    ##里面含有一個數組,可以改變里面數組的值
t1[0].append(4)
print(t1)

Python中的元組介紹

元組如果只有一個元素的時候,后面一定要加逗號,否則數據類型不確定

t2 = ('hello',)  
t3 = (1,)
print(type(t2))
print(type(t3))

Python中的元組介紹

2.元組的特性

下面是舉例子用的元組

allowUsers = ('root','westos','redhat')
allowPasswd = ('123','456','789')

1)索引和切片

print(allowUsers[0])
print(allowUsers[-1])
print(allowUsers[1:])
print(allowUsers[2:])
print(allowUsers[:-1])
print(allowUsers[::-1])

Python中的元組介紹

2)重復

print(allowUsers * 3)

3)連接

print(allowUsers + ('linux','python'))

Python中的元組介紹

4)成員操作符

print('westos' in allowUsers)
print('westos' not in allowUsers)

Python中的元組介紹

5)for循環

for user in allowUsers:
  print(user)

Python中的元組介紹

for index,user in enumerate(allowUsers):
  print('第%d個白名單用戶: %s' %(index+1,user))

Python中的元組介紹

6)zip:兩個元組之間的元素相互對應

Python中的元組介紹

3.元組的常用方法

t = (1,2.3,True,'westos','westos')
print(t.count('westos'))
print(t.index(2.3))

Python中的元組介紹

4.元組的應用場景

1)變量交換數值

現在給變量賦值,a=1,b=2。如何使用元組快速的將a和b的值互換

#1.先把(a,b)封裝成一個元組(1,2)
#2.b,a=a,b ---> b,a=(1,2)
b = (1,2)[0]
a = (1,2)[1]
print(a)
print(b)

這樣就將a,b的值互換了

2)打印變量的值

name = 'westos'
age = 11
t = (name,age)
print('name:%s , age:%d' %(name,age))
print('name:%s , age:%d' %t)

Python中的元組介紹

3)元組的賦值,有多少個元素,就用多少個變量

t = ('westos',11,100)
name,age,score = t
print(name,age,score)

Python中的元組介紹

4)排序加元組的賦值

score = (100,89,45,78,65)
# scoreLi = list(score)
# scoreLi.sort()
# print(scoreLi)
scores = sorted(score)
# print(scores)
minscore,*middlescore,maxscore = scores
print(minscore)
print(middlescore)
print(maxscore)
print('最終成績為: %.2f' %(sum(middlescore) / len(middlescore)))

Python中的元組介紹

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平谷区| 中超| 富民县| 沾化县| 龙口市| 永丰县| 会昌县| 阜新市| 顺平县| 错那县| 石城县| 尚义县| 孝感市| 镶黄旗| 宁陵县| 探索| 禹州市| 莎车县| 井冈山市| 丹棱县| 宣威市| 牟定县| 塔河县| 余姚市| 太和县| 额尔古纳市| 西昌市| 海口市| 蓬安县| 青岛市| 社会| 修文县| 泸溪县| 全南县| 东光县| 永昌县| 同心县| 邛崃市| 奈曼旗| 惠来县| 中宁县|