例えば、polypropyleneという単語をもつタイトルを抽出することはできるのですが、polypropyleneとDevelopment、を持つタイトルを抽出したい場合はどうすれば良いのでしょうか?
python
1import requests, bs4 2 3result = [] 4for num in range(1,4): 5 res = requests.get(f'https://journals.sagepub.com/toc/trjc/88/{num}') 6 res.raise_for_status() 7 soup = bs4.BeautifulSoup(res.text, "html.parser") 8 elems = soup.select('.heading-title') 9 for elem in elems: 10 result.append(elem.text) 11print(*result, sep='\n') 12for title in result: 13 if 'polypropylene' in title: 14 print(title)
結果
Development of disperse dye polypropylene fiber and process parameter optimization Part I: development of dyeable polypropylene fiber and parameter optimization
Hydrophilic and antimicrobial properties of acrylic acid and chitosan bigrafted polypropylene melt-blown nonwoven membrane immobilized with silver nanoparticles
上記のプログラミングではpolypropyleneという単語をもつタイトルを抽出することはできます。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/07 01:10