1.組合資料型別練習:
分別定義字串,列表,元組,字典,集合,並進行遍歷。
總結列表,元組,字典,集合的聯絡與區別。
# 字串s = 'examples.'
print(s)
for i in s:
print(i)
# 列表
s = 'this is a string examples.'
ls = s.split()
print(ls)
for i in ls:
print(i)
# 元組
tup1 = ('physics', 'chemistry', 1997, 2000);
print(tup1)
for i in tup1:
print(i)
# 字典
names = ['michael','bob','tracy']
sources = [95,75,85]
d = dict(zip(names,sources))
print(d)
for i in d:
print(i)
# 集合
s = d.keys()
print(s)
for i in s:
print(i)
字典:儲存資料的一種容器,字典中儲存的資料都是無序的,可以取資料的時候不能根據索引取,可以根據key(鍵)取出對應的value(值) 鍵必須是唯一的,不可變的
元組:可以儲存資料,一旦元組找到那個儲存的資料確定後,就不可以在進行增刪改了
集合:儲存資料的一種方式,集合中的資料是無序的,集合中沒有重複的資料,資料一旦確定後就不能更改
列表:是乙個可變的容器,具有增刪改查的功能,可以儲存任意型別的資料,儲存資料有順序,可以根據索引取資料
組合資料型別練習,綜合練習
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...
組合資料型別綜合練習
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 i...