基本類型
整型 浮點(diǎn)型 字符串 布爾類型
字符串簡(jiǎn)單操作
\ 轉(zhuǎn)義符
print('hello \nword')
hello
word
- 拼接
print('hello' + 'word')
helloword
- 復(fù)制
print('shark\n' * 2)
shark
shark
利用字符串對(duì)象的方法
split 從左往右
url='www.baidu.com'
url.split('.')
['www', 'baidu', 'com']
url.split('.',1)
['www', 'baidu.com']
rsplit 從右往左
replace 替換
url
'www.baidu.com'
url.replace('.','-')
'www-baidu-com'
strip 移除兩端的空格
s = ' hello '
s.strip()
'hello'
startswith 判斷字符串以什么為開頭
endswith 判斷字符串以什么為結(jié)尾
index 獲取一個(gè)元素在字符串中的索引號(hào)
s = 'hello world'
s.index('l')
2
核心數(shù)據(jù)結(jié)構(gòu)
字符串 列表 元組 字典 集合
列表的基本操作
len() 長(zhǎng)度
li = [1,2,3]
len(li)
3
append() 往最后插入數(shù)據(jù)
li = [1,2,3]
li.append('a')
li
[1, 2, 3, 'a']
insert() 往指定位置插入數(shù)據(jù)
li = [1,2,3]
li.insert(1,'a')
li
[1, 'a', 2, 3]
extend() 可以把一個(gè)序列類型中的每個(gè)元素追加到原列表中钥庇,接收的參數(shù)是一個(gè)序列類型的數(shù)據(jù)(字符串,列表)
li = [1,2,3]
li.extend(['a','b','c'])
li
[1, 2, 3, 'a', 'b', 'c']
remove() 移除列表中某個(gè)指定的元素
li = [1,2,2,3]
li.remove(2)
li
[1, 2, 3]
pop() 從原列表中刪除一個(gè)元素咖摹,并且把這個(gè)元素返回
默認(rèn)刪除最后一個(gè)元素
li = [1,2,3]
li.pop()
3
刪除列表中第二個(gè)索引號(hào)對(duì)應(yīng)的元素评姨,并且返回這個(gè)元素
li = ['a','b','c']
li.pop(2)
'c'
''.join() 把列表中的元素拼接起來(lái),返回的是字符串類型
li=['a','b','c']
s = ''.join(li)
s
'abc'
s = '-'.join(li)
s
'a-b-c'
sort() 對(duì)列表中元素進(jìn)行排序
li = [2,4,1,3]
li.sort()
li
[1, 2, 3, 4]
接收一個(gè) reverse (反轉(zhuǎn)) 參數(shù),False 是升序萤晴,True 是降序
li = [2,4,1,3]
li.sort(reverse=True)
li
[4, 3, 2, 1]
sorted() 是 python 的內(nèi)置函數(shù)吐句,接受一個(gè)參數(shù)胁后,參數(shù)可以是任意序列類型的數(shù)據(jù),但是元素的類型必須相同.
li = ['b','d','a','c']
sorted(li)
['a', 'b', 'c', 'd']
字典的基本操作
zip() 函數(shù)可以對(duì)多個(gè)序列進(jìn)行并行迭代
en =['a', 'b', 'c', 'd']
nums = ['1', '2', '3', '4']
for word, num in zip(en, nums):
... print(word, num)
...
a 1
b 2
c 3s = ' hello '
>>> s.strip()
'hello'
startswith 判斷字符串以什么為開頭
endswith 判斷字符串以什么為結(jié)尾
index 獲取一個(gè)元素在字符串中的索引號(hào)
>>> s = 'hello world'
>>> s.index('l')
2
核心數(shù)據(jù)結(jié)構(gòu)
字符串 列表 元組 字典 集合
列表的基本操作
len() 長(zhǎng)度
>>> li = [1,2,3]
>>> len(li)
3
append() 往最后插入數(shù)據(jù)
>>> li = [1,2,3]
>>> li.append('a')
>>> li
[1, 2, 3, 'a']
insert() 往指定位置插入數(shù)據(jù)
>>> li = [1,2,3]
>>> li.insert(1,'a')
>>> li
[1, 'a', 2, 3]
extend() 可以把一個(gè)序列類型中的每個(gè)元素追加到原列表中嗦枢,接收的參數(shù)是一個(gè)序列類型的數(shù)據(jù)(字符串攀芯,列表)
>>> li = [1,2,3]
>>> li.extend(['a','b','c'])
>>> li
[1, 2, 3, 'a', 'b', 'c']
remove() 移除列表中某個(gè)指定的元素
>>> li = [1,2,2,3]
>>> li.remove(2)
>>> li
[1, 2, 3]
pop() 從原列表中刪除一個(gè)元素,并且把這個(gè)元素返回
# 默認(rèn)刪除最后一個(gè)元素
>>> li = [1,2,3]
>>> li.pop()
3
# 刪除列表中第二個(gè)索引號(hào)對(duì)應(yīng)的元素文虏,并且返回這個(gè)元素
>>> li = ['a','b','c']
>>> li.pop(2)
'c'
''.join() 把列表中的元素拼接起來(lái)侣诺,返回的是字符串類型
>>> li=['a','b','c']
>>> s = ''.join(li)
>>> s
'abc'
>>> s = '-'.join(li)
>>> s
'a-b-c'
sort() 對(duì)列表中元素進(jìn)行排序
>>> li = [2,4,1,3]
>>> li.sort()
>>> li
[1, 2, 3, 4]
# 接收一個(gè) reverse (反轉(zhuǎn)) 參數(shù),False 是升序,True 是降序
>>> li = [2,4,1,3]
>>> li.sort(reverse=True)
>>> li
[4, 3, 2, 1]
sorted() 是 python 的內(nèi)置函數(shù)氧秘,接受一個(gè)參數(shù)紧武,參數(shù)可以是任意序列類型的數(shù)據(jù),但是元素的類型必須相同.
>>> li = ['b','d','a','c']
>>> sorted(li)
['a', 'b', 'c', 'd']
字典的基本操作
zip() 函數(shù)可以對(duì)多個(gè)序列進(jìn)行并行迭代
>>> en =['a', 'b', 'c', 'd']
>>> nums = ['1', '2', '3', '4']
>>> for word, num in zip(en, nums):
... print(word, num)
...
a 1
b 2
c 3
d 4
獲取字典的 key對(duì)應(yīng)的 value
dict1={'a':1,'b':2}
dict1.get('c')
dict['c']
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'type' object is not subscriptable
獲取字典所有的 key
dict1.keys()
dict_keys(['a', 'b'])
獲取字典所有的 value
dict1.values()
dict_values([1, 2])
同時(shí)獲取字典的 key 和 value
dict1.items()
dict_items([('a', 1), ('b', 2)])
使用 = 修改或更新字典
dict1={'a':1,'b':2}
dict1['a']=2
dict1
{'a': 2, 'b': 2}
使用 update() 更新字典
把一個(gè)已經(jīng)存在的字典中的鍵值對(duì)敏储,添加到另一個(gè)字典中
dict1={'a':1,'b':2}
dict2={'a':2,'c':3}
dict1.update(dict2)
dict1
{'a': 2, 'b': 2, 'c': 3}
#將含有數(shù)字的都去掉
li=[('abc','cd',18),('s',20),(19,)]
for item in li:
*_,n=item
if type(n) is int:
a = li.index(item)
tmp_li = list(item)
tmp_li.remove(n)
li[a]=tuple(tmp_li)
print(li)