python基礎學習 元組

2022-04-18 09:41:07 字數 1234 閱讀 4192

#

__author:"feng lin"

#date: 2018/8/25

#元組,唯讀列表,可以迴圈查詢,可以切片

#兒子不能改,孫子可以改

tup=(1,2,3,"

llin

",[2,3,4,'

taihei

'],'

egon')

print(tup[3])

tup[4][3]=tup[4][3].upper()

print

(tup)

#join方法的使用

#列表轉換成字串

list=['

taihao

','alex

','wuhan

','xipi']

s="test

"s1='+'

.join(s)

print

(s1)

s2='_'

.join(list)

print

(s2)

#字串轉換成列表用split

str1='

alex_is_big_sb

'print(str1.split('_'

))#range方法的使用

#顧頭不顧尾,也可以切片

for i in range(0,10,2):

print

(i)test1=["

吉澤明步

","蒼井空

",["

小澤瑪利亞

","悠木碧

","櫻井莉亞

"],"

麻倉優","

東尼大木

",["

話語亞爾

","西海"]]

for i in

test1:

if type(i)!=str:

for k in

range(len(i)):

print

(i[k])

else

:

print

(i)#

for i in test1:

#print(type(i))

#print(i)

#name=input('>>>')

#if type(name)=="list":

#print("is list")

#else:

#print("is str")

Python基礎學習筆記 元組

格式 資料1,資料2,資料3 例子 red blue green 2,4,6,字串 列表 1 true,1,2 定義空元組 my tuple1 my tuple2 tuple tuple1 1 3,5 2,4,6 tuple1 3 0 777 tuple1 1 3,5 777,4,6 訪問方式和字串...

python 基礎學習筆記 元組

這是筆者的在python學習過程中的一些筆記,如有誤,還請諒解。元組 tuple 簡介my tuple 1 2,3 4,5 元組是乙個不可變的序列 它的操作的方式基本上和列表是一致的 所以你在操作元組時,就把元組當成是乙個不可變的列表就可以了 一般當我們希望資料不改變時,就使用元組,其餘情況都使用列...

Python基礎學習之元組

元組學習 元組像列表一樣可以一次性儲存多個資料,但元組內儲存的資料是不支援修改的 建立元組 a 1 2,3 b zhang 當元組內有乙個元素是必須要加逗號,否則型別將會發生改變 特別之處 雖然上面說元組不支援修改,但也存在特殊的情況 c 1 2,3,4,5 print c c 2 0 99prin...