質問編集履歴
1
codeボタンを押してcodeを貼り付けました。エラーメッセージも掲載しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,13 +12,17 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
+
```言語 Python 【バージョン】Python 3.6.1
|
16
|
+
|
15
|
-
|
17
|
+
コード
|
18
|
+
|
19
|
+
|
16
20
|
|
17
21
|
import requests
|
18
22
|
|
19
23
|
|
20
24
|
|
21
|
-
#
|
25
|
+
#画像ファイルを取得する
|
22
26
|
|
23
27
|
image_url = "https://www.ymori.com/books/python2nen/sample1.png"
|
24
28
|
|
@@ -26,22 +30,34 @@
|
|
26
30
|
|
27
31
|
|
28
32
|
|
29
|
-
#
|
33
|
+
#URLから最後のファイル名を取り出す
|
30
34
|
|
31
35
|
filename = image_url.split("/")[-1]
|
32
36
|
|
33
37
|
|
34
38
|
|
35
|
-
#
|
39
|
+
#画像データを、ファイルに取り出す
|
36
40
|
|
37
41
|
with open(filename, mode="wb") as f:
|
38
42
|
|
39
|
-
|
43
|
+
f.write(imgdata.content)
|
40
44
|
|
41
45
|
|
42
46
|
|
43
47
|
|
44
48
|
|
45
|
-
|
49
|
+
```
|
46
50
|
|
51
|
+
|
52
|
+
|
53
|
+
【エラーメッセージ】このようなエラーが表示され画像も表示されません
|
54
|
+
|
55
|
+
Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 17:54:52) [MSC v.1900 32 bit (Intel)] on win32
|
56
|
+
|
57
|
+
Type "copyright", "credits" or "license()" for more information.
|
58
|
+
|
47
|
-
|
59
|
+
>>>
|
60
|
+
|
61
|
+
==== RESTART: C:\Users\User\Documents\python\phython2年生\chap2 chap2-11.py ====
|
62
|
+
|
63
|
+
>>>
|