組合資料型別綜合練習

2022-06-01 16:12:26 字數 694 閱讀 9581

1.組合資料型別練習:

分別定義字串,列表,元組,字典,集合,並進行遍歷。

字串:

>>> str = 'csdasd'

>>> for i in str:

print(i) c

sdas

d

列表:

>>> ls = ['1','2','3','446']

>>> for i in ls:

print(i) 1

23446

元組:

>>> turtle = ('da', 'ds', 'sd')

>>> for i in turtle:

print(i) da

dssd

字典:

>>> dict = 

>>> for i in dict:

print(i+':'+dict[i])

alice:123

bac:113

casd:325

集合:

>>> b = set(['sd', 'fd', 'wqe'])

>>> for i in b:

print(i) fd

sdwqe

總結列表,元組,字典,集合的聯絡與區別。

而字典是以鍵值對來存放資料,集合卻是相當於字典的鍵值「key」。

組合資料型別練習,綜合練習

1.組合資料型別練習 分別定義字串,列表,元組,字典,集合,並進行遍歷。總結列表,元組,字典,集合的聯絡與區別。字串 s examples.print s for i in s print i 列表 s this is a string examples.ls s.split print ls fo...

組合資料型別練習,綜合練習

1.組合資料型別練習 分別定義字串,列表,元組,字典,集合,並進行遍歷。總結列表,元組,字典,集合的聯絡與區別。字串str hello world for i in str print i 列表list hello world 233,3.1415 for i in list print i 元組t...

組合資料型別練習,綜合練習

分別定義字串,列表,元組,字典,集合,並進行遍歷 str china for i in str print i s c h i n a 68 for i in s print i tup china chinese 1949,2018 for i in range len tup print tup...