您可以使用正則表達式來提取字符串中的數(shù)字。以下是一個示例代碼:
import re # 定義一個包含數(shù)字的字符串 s = "hello 12345 world" # 使用正則表達式提取數(shù)字 numbers = re.findall(r'\d+', s) # 打印提取到的數(shù)字 for number in numbers: print(number)
上面的代碼將輸出:
12345
億速云公眾號
手機網(wǎng)站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權(quán)所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網(wǎng)安備 44010402001142號增值電信業(yè)務(wù)經(jīng)營許可證編號:B1-20181529