回答編集履歴
3
プログラムミスを修正
answer
CHANGED
@@ -4,14 +4,14 @@
|
|
4
4
|
import bs4
|
5
5
|
import html5lib
|
6
6
|
import lxml
|
7
|
-
print("bs4 ==> " + bs4.__path__)
|
7
|
+
print("bs4 ==> " + "".join(bs4.__path__))
|
8
|
-
print("html5lib ==> " + html5lib.__path__)
|
8
|
+
print("html5lib ==> " + "".join(html5lib.__path__))
|
9
|
-
print("lxml ==> " + lxml.__path__)
|
9
|
+
print("lxml ==> " + "".join(lxml.__path__))
|
10
10
|
```
|
11
11
|
|
12
12
|
【追記】
|
13
13
|
以下も見せてください
|
14
14
|
```python
|
15
15
|
import bs4
|
16
|
-
print(
|
16
|
+
print(bs4.builder._html5lib)
|
17
17
|
```
|
2
typoの修正
answer
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
【追記】
|
13
13
|
以下も見せてください
|
14
|
-
```
|
14
|
+
```python
|
15
15
|
import bs4
|
16
16
|
print("_html5lib ==> " + bs4.builder._html5lib)
|
17
17
|
```
|
1
モジュールのパスの確認
answer
CHANGED
@@ -7,4 +7,11 @@
|
|
7
7
|
print("bs4 ==> " + bs4.__path__)
|
8
8
|
print("html5lib ==> " + html5lib.__path__)
|
9
9
|
print("lxml ==> " + lxml.__path__)
|
10
|
+
```
|
11
|
+
|
12
|
+
【追記】
|
13
|
+
以下も見せてください
|
14
|
+
```
|
15
|
+
import bs4
|
16
|
+
print("_html5lib ==> " + bs4.builder._html5lib)
|
10
17
|
```
|