質問編集履歴
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,7 +30,9 @@
|
|
30
30
|
|
31
31
|
s.verify = False
|
32
32
|
|
33
|
-
s.get('https://example.com')
|
33
|
+
r = s.get('https://example.com')
|
34
|
+
|
35
|
+
print(r.content)
|
34
36
|
|
35
37
|
```
|
36
38
|
|