首先一些Python字符串處理的簡易常用的用法。其他的以后用到再補充。
成都創(chuàng)新互聯(lián)是一家專業(yè)提供靈石企業(yè)網(wǎng)站建設,專注與網(wǎng)站制作、成都做網(wǎng)站、H5技術(shù)、小程序制作等業(yè)務。10年已為靈石眾多企業(yè)、政府機構(gòu)等服務。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站制作公司優(yōu)惠進行中。
s = "hello hello hello"
s = ' '.join(s.split())
s = "hello\nhello\nhello hello\n"
print(s)
s = s.replace("\n","")
print(s)
s = "hello\nhello\nhello hello\n"
print(s.find('\n'))
print(s.find('la'))
s = "hello\nhello\nhello hello\n"
print(s.rfind('\n'))
print(s.rfind('la'))
s = "hello\nhello\nhello hello\n"
print(list(s))
import re
s = "hello\nhello\nhello hello\n"
print(re.findall('hello',s)) # hello也可以換成正則表達式
import requests
r = requests.get('https://baike.baidu.com')
with open('test.html', 'wb') as fd:
for chunk in r.iter_content(100):
fd.write(chunk)
# encoding : utf-8
with open('test.html','r',encoding='utf-8') as f:
content = f.readlines()
content = ''.join(content)
# content = content.replace('\n','') # 如果想去掉回車可以加上這行
print(content)
from bs4 import BeautifulSoup
soup = BeautifulSoup(content,'html.parser')
print(soup.prettify())
'''
學習中遇到問題沒人解答?小編創(chuàng)建了一個Python學習交流群:
尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書!
'''
soup = BeautifulSoup(content,'html.parser')
print(soup.find_all('a'))
或者提取出所有標簽和標簽
soup = BeautifulSoup(content,'html.parser')
print(soup.find_all(['a','b']))
這些屬于beautifulsoup的內(nèi)容了
import re
re.split('; |, ',str)
>>> a='Beautiful, is; better*than\nugly'
>>> import re
>>> re.split('; |, |\*|\n',a)
['Beautiful', 'is', 'better', 'than', 'ugly']