質問編集履歴
1
コードブロックの使用なし➡あり リンク部分のリンクなし➡あり
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,9 +6,19 @@
|
|
6
6
|
|
7
7
|
・最初に出たエラー
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
```ここに言語を入力
|
10
|
+
|
11
|
+
File "<ipython-input-4-0a904a6ac562>", line 6
|
12
|
+
|
13
|
+
filename = "C:\Users\furug\Desktop\work\test2.csv"
|
14
|
+
|
15
|
+
^
|
16
|
+
|
17
|
+
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
|
18
|
+
|
19
|
+
```
|
20
|
+
|
21
|
+
・解決のために参考にしたページ➡[リンク内容]((https://ja.stackoverflow.com/questions/11582/open%E9%96%A2%E6%95%B0%E3%82%92%E4%BD%BF%E3%81%86%E3%81%A8%E3%82%A8%E3%83%A9%E3%83%BC-unicode-error-%E3%81%8C%E5%87%BA%E3%81%A6%E3%81%97%E3%81%BE%E3%81%84%E3%81%BE%E3%81%99))
|
12
22
|
|
13
23
|
・対策した内容
|
14
24
|
|
@@ -22,11 +32,29 @@
|
|
22
32
|
|
23
33
|
・別のエラー⓶
|
24
34
|
|
35
|
+
```ここに言語を入力
|
36
|
+
|
37
|
+
UnicodeDecodeError Traceback (most recent call last)
|
38
|
+
|
39
|
+
<ipython-input-5-fe9ff54b74e4> in <module>
|
40
|
+
|
41
|
+
9 with open(filename, 'r') as f:
|
42
|
+
|
43
|
+
10 reader = csv.reader(f)
|
44
|
+
|
45
|
+
---> 11 header = next(reader)
|
46
|
+
|
47
|
+
12
|
48
|
+
|
49
|
+
13 for row in reader:
|
50
|
+
|
51
|
+
|
52
|
+
|
25
|
-
|
53
|
+
UnicodeDecodeError: 'cp932' codec can't decode byte 0xef in position 0: illegal multibyte sequence
|
26
|
-
|
54
|
+
|
27
|
-
|
55
|
+
```
|
28
|
-
|
56
|
+
|
29
|
-
|
57
|
+
・解決の為に参考にしたページ➡[リンク内容](https://qiita.com/Yuu94/items/9ffdfcb2c26d6b33792e)
|
30
58
|
|
31
59
|
・対策した内容
|
32
60
|
|
@@ -40,7 +68,27 @@
|
|
40
68
|
|
41
69
|
・別のエラー⓷
|
42
70
|
|
71
|
+
```ここに言語を入力
|
72
|
+
|
73
|
+
FileNotFoundError Traceback (most recent call last)
|
74
|
+
|
75
|
+
<ipython-input-6-10c16fac8532> in <module>
|
76
|
+
|
77
|
+
7
|
78
|
+
|
79
|
+
8 # CSVから読み込み
|
80
|
+
|
81
|
+
----> 9 with open(filename, 'r') as f:
|
82
|
+
|
83
|
+
10 reader = csv.reader(f)
|
84
|
+
|
85
|
+
11 header = next(reader)
|
86
|
+
|
87
|
+
|
88
|
+
|
43
|
-
|
89
|
+
FileNotFoundError: [Errno 2] No such file or directory: 'C:\Users\furug\Desktop\work\test2.csv,encoding=utf-8_sig'
|
90
|
+
|
91
|
+
```
|
44
92
|
|
45
93
|
ここで『そんなファイルないって言われても・・・』となり止まってしまいました。
|
46
94
|
|
@@ -52,6 +100,8 @@
|
|
52
100
|
|
53
101
|
|
54
102
|
|
103
|
+
```ここに言語を入力
|
104
|
+
|
55
105
|
import smtplib
|
56
106
|
|
57
107
|
from email.mime.text import MIMEText
|
@@ -201,3 +251,5 @@
|
|
201
251
|
mailer = Mailer(addr_to, subject, body)
|
202
252
|
|
203
253
|
mailer.send()
|
254
|
+
|
255
|
+
```
|