91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用python提取字符串中的數字

發布時間:2022-01-28 13:35:25 來源:億速云 閱讀:9121 作者:iii 欄目:開發技術

這篇“怎么用python提取字符串中的數字”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“怎么用python提取字符串中的數字”文章吧。

一、isdigit()函數

isdigit()函數是檢測輸入字符串是否只由數字組成。如果字符串只包含數字則返回 True 否則返回 False。

dream = "123456"
print(dream.isdigit())
# 返回:True

dream = "123abc456"
print(dream.isdigit())
# 返回:False

dream = 'abcd'
print(dream.isdigit())
# 返回:False

二、filter() 函數

說明:filter() 函數用于過濾序列,過濾掉不符合條件的元素,返回一個迭代器對象;

如果要轉換為列表,可以使用 list() 來轉換。

該接收兩個參數,第一個為函數,第二個為序列,序列的每個元素作為參數傳遞給函數進行判斷,然后返回 True 或 False,最后將返回 True 的元素放到新列表中。

語法:

filter(function, iterable)

1、過濾出列表中的所有奇數:

def is_odd(n):
    return n % 2 == 1
 
tmplist = filter(is_odd, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
newlist = list(tmplist)
print(newlist)

2、過濾出列表中的所有偶數:

l = [x for x in range(10)]
print(list(filter(lambda x : x%2 == 0, l)))

3、過濾出1~100中平方根是整數的數:

import math
def is_sqr(x):
    return math.sqrt(x) % 1 == 0
 
tmplist = filter(is_sqr, range(1, 101))
newlist = list(tmplist)
print(newlist)

4、刪除1-100中素數

L = range(1, 101)

def isprimer(n):
    flag = 1
    for i in range(2, n):
        if n % i == 0:
            flag = 0
    if flag == 0:
        return n

print(list(filter(isprimer, L)))

5、去除空格和空值

def not_empty(s):
  return s and s.strip()

filter(not_empty, ['A', '', 'B', None, 'C', ' '])

6、高階運用

def _odd_iter():
    n = 1
    while True:
        n = n + 2
        yield n
        
def _not_divisible(n): 
    return lambda x : x%n>0
 
def primes():
    yield 2
    it = _odd_iter()
    ftr = filter(_not_divisible(2), it) #1
    while True:
        n = next(ftr )        #2
        yield n                
        ftr = filter(_not_divisible(n), ftr ) #3
        
for n in primes():
    if n < 100:
        print('now:',n)
    else:
        break

三、提取一段字符串中的數字

列表轉字符串

number = ['12', '333', '4']
number_ = "".join(number)    # 列表轉字符串
print(number_)    # 123334
a = "".join(list(filter(str.isdigit, '123ab45')))
print(a)
# 返回12345

b = list(filter(str.isdigit, '123ab45'))
print(b)
# 返回['1', '2', '3', '4', '5']
time_ = "2019年09月04日 11:00"
time_filter = filter(str.isdigit, time_)

print(time_filter)           # <filter object at 0x0000019358731BE0>
print(type(time_filter))     # <class 'filter'>
time_list = list(time_filter)       # ['2', '0', '1', '9', '0', '9', '0', '4', '1', '1', '0', '0']
time_str = "".join(time_list)       # 轉為str    201909041100
time_int = int(time_str)            # 轉為int    201909041100

利用正則表達式

import re
str_ = "12今天333天氣4不錯"
number = re.findall("\d+",str_)    # 輸出結果為列表
print(number)
 
# 輸出結果:['12', '333', '4']

四、匹配指定字符串開頭的數字

例如下面的string:

tensorflow:Final best valid 0 loss=0.20478513836860657 norm_loss=0.767241849151384 roc=0.8262403011322021 pr=0.39401692152023315 calibration=0.9863265752792358 rate=0.0

提取 calibration=0.9863265752792358 .

# 匹配“calibration=”后面的數字
pattern = re.compile(r'(?<=calibration=)\d+\.?\d*')
pattern.findall(string)

# ['0.9863265752792358']

怎么用python提取字符串中的數字

五、匹配時間,17:35:24

string = "WARNING:tensorflow: 20181011 15:28:39 Initialize training"
pattern = re.compile(r'\d{2}:\d{2}:\d{2}')
pattern.findall(string)
# ['15:28:39']

六、匹配時間,20181011 15:28:39

string = "WARNING:tensorflow: 20181011 15:28:39 Initialize training"
pattern = re.compile(r'\d{4}\d{2}\d{2}\s\d{2}:\d{2}:\d{2}')
pattern.findall(string)
# ['20181011 15:28:39']

以上就是關于“怎么用python提取字符串中的數字”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吴忠市| 秦安县| 漠河县| 屯门区| 德兴市| 芦溪县| 明水县| 曲水县| 孙吴县| 平南县| 鄢陵县| 西安市| 黎川县| 巫山县| 满城县| 如皋市| 石狮市| 平远县| 志丹县| 和林格尔县| 阿拉善盟| 玉山县| 桂平市| 西充县| 林芝县| 日土县| 开阳县| 安义县| 阿拉善右旗| 保定市| 景泰县| 临洮县| 大田县| 延川县| 莆田市| 个旧市| 平阳县| 广元市| 达日县| 巴林右旗| 宁乡县|