python 常用函式 整理

2021-10-01 18:50:15 字數 1004 閱讀 1205

list.remove(elem) # 移除第一找到的elem元素

list.pop() #彈出乙個元素,返回該元素;

list.pop([index=-1]) # 移除列表中的乙個元素

list.extend(seq) # 在列表末尾一次性追加另乙個序列中的多個值(用新列表擴充套件原來的列表)

list.index(obj) # 從列表中找出某個值第乙個匹配項的索引位置,若查詢的值不在列表中,則會報異常

list.insert(index, obj) # 將物件插入列表

list.reverse() # 反向列表中元素 沒有返回值

#第乙個例子:

str1 =

'1001'

# bin

str2int =

int(str1,2)

# 結果為 9

str2 =

'0x0a'

str2int =

int(str2,16)

# 結果為10

# 第二個例子:

# 兩數中間值取整

res =

int(

(x + y)/2

)

在處理ascii碼時,需要用到的兩個函式方法.

print

(chr(65

))aprint

(ord

('a'))

65

集合(set)是乙個無序的不重複元素序列。

可以使用大括號 或者 set() 函式建立集合,注意:建立乙個空集合必須用 set() 而不是 ,因為 是用來建立乙個空字典。

range(1

,5)# --->[1,2,3,4]

range(1

,6,2

)# --->[1,3,5]

range(5

,-1,

-1)# --->[5,4,3,2,1,0]

python 常用函式整理

目錄 1.ceil 函式 2.類的定義 3.np.where 4.listdir 5.mean 6.split 功能 ceil 函式返回數字的上入整數 使用 imort math math.ceil x 例項 coding utf 8 import math this will import mat...

Python 學習 常用函式整理

整理python中常用的函式 使用ast模組中的literal eval函式來實現,把字串形式的list轉換為python的基礎型別list from ast import literal eval str list 1838,13735,8285,35386 mylist literal eval...

python爬蟲常用資料整理函式

text 獲取xpath中的值。h1 text extract 0 selector的方法用於提取內容為乙個陣列。extract first 與extract 0 相同更加準確 contains 匹配乙個屬性值中包含的字串 contains class,vote post strip 把頭和尾的空格...