質問編集履歴

1

変更点追加

2020/09/08 09:05

投稿

PPAP_AWS
PPAP_AWS

スコア105

test CHANGED
File without changes
test CHANGED
@@ -23,3 +23,35 @@
23
23
  [リンク内容](https://www.youtube.com/watch?v=LgZ8Li97yoM&t=817s)
24
24
 
25
25
  問題点は33:00頃です。
26
+
27
+
28
+
29
+ ```python
30
+
31
+ title_list=[]
32
+
33
+ url_list=[]
34
+
35
+
36
+
37
+ for i in title_lists:
38
+
39
+ title_list.append(i.string)
40
+
41
+ url_list.append(i.attrs['href'])
42
+
43
+
44
+
45
+ title_list
46
+
47
+
48
+
49
+ url_list
50
+
51
+
52
+
53
+ import pandas as pd ←追加コード記載。
54
+
55
+ df_title_url = pd.DataFrame({'title':title_list, 'URL':url_list})
56
+
57
+ ```