実現したいこと
JupyterLab上でこのページで織田信長、伊達政宗、長宗我部元親の三人の画像URLを一斉に出力したいです。
出力結果をこのようにしたいです。どのようにしたらできますか?(調べてみましたがよくわからなかったので、質問させていただきました)
'https://ranking.xgoo.jp/image_proxy/smartcrop/w_450_h_300/tool/images/column/2023/03/2023_0302_colmun_main1_1.jpg' 'https://ranking.xgoo.jp/image_proxy/smartcrop/w_450_h_300/tool/images/column/2023/03/2023_0302_colmun_main1_2.jpg' 'https://ranking.xgoo.jp/image_proxy/smartcrop/w_450_h_300/tool/images/column/2023/03/2023_0302_colmun_main1_3.jpg'
発生している問題・エラーメッセージ
Python
1--------------------------------------------------------------------------- 2TypeError Traceback (most recent call last) 3/var/folders/jr/2p724fh51wv7fxmql7kxyb1h0000gn/T/ipykernel_50717/900349349.py in <module> 4 10 shogun_images=img_tag_date, img_tag, img_tag_chosokabe 5 11 6---> 12 shogun_images['src'] 7 8TypeError: tuple indices must be integers or slices, not str
該当のソースコード
Pyhon
1import requests 2from bs4 import BeautifulSoup 3url=('https://ranking.goo.ne.jp/column/8616/') 4soup=BeautifulSoup(res.text,'html.parser') 5 6img_tag=soup.find_all('img')[19] 7img_tag_date=soup.find_all('img')[18] 8img_tag_chosokabe=soup.find_all('img')[17] 9 10shogun_images=img_tag_date, img_tag, img_tag_chosokabe 11 12shogun_images['src']
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。