質問編集履歴

2

エラー部分の不要情報削除

2020/02/16 00:26

投稿

thinkthink
thinkthink

スコア6

test CHANGED
File without changes
test CHANGED
@@ -48,7 +48,7 @@
48
48
 
49
49
  33 #htmlファイルを読み込み。メール本文に挿入
50
50
 
51
- ---> 34 test_data = open(r'C:\Users\furug\Desktop\work\ホール情報.html', "r",'utf-8', 'ignore')
51
+ ---> 34 test_data = open(r'C:\Users\Desktop\work\情報.html', "r",'utf-8', 'ignore')
52
52
 
53
53
  35 contents = test_data.read()
54
54
 

1

コードブロック使用なし➡ありに変更。リンク部分のリンクなし➡ありに変更

2020/02/16 00:26

投稿

thinkthink
thinkthink

スコア6

test CHANGED
File without changes
test CHANGED
@@ -4,11 +4,7 @@
4
4
 
5
5
 
6
6
 
7
- こちらのサイトを参考にしてやってみましたがエラーが出てしまいます。➡http://wheelchairtext.net/program/1487/
7
+ こちらのサイトを参考にしてやってみましたがエラーが出てしまいます。➡[リンク内容](http://wheelchairtext.net/program/1487/)
8
-
9
-
10
-
11
- 出ているエラーはこちらです➡TypeError: an integer is required (got type str)
12
8
 
13
9
 
14
10
 
@@ -30,9 +26,51 @@
30
26
 
31
27
 
32
28
 
29
+ ### 出ているエラーはこちらです
30
+
31
+ ```ここに言語を入力
32
+
33
+ TypeError Traceback (most recent call last)
34
+
35
+ <ipython-input-17-09ff481f31ec> in <module>
36
+
37
+ 40
38
+
39
+ 41 if __name__ == '__main__':
40
+
41
+ ---> 42 main()
42
+
43
+
44
+
45
+ <ipython-input-17-09ff481f31ec> in main()
46
+
47
+ 32 subject = SUBJECT
48
+
49
+ 33 #htmlファイルを読み込み。メール本文に挿入
50
+
51
+ ---> 34 test_data = open(r'C:\Users\furug\Desktop\work\ホール情報.html', "r",'utf-8', 'ignore')
52
+
53
+ 35 contents = test_data.read()
54
+
55
+ 36 body = contents
56
+
57
+
58
+
59
+ TypeError: an integer is required (got type str)
60
+
61
+ ```
62
+
63
+
64
+
65
+
66
+
67
+
68
+
33
69
  ### 現在のコードは以下です
34
70
 
35
71
 
72
+
73
+ ```ここに言語を入力
36
74
 
37
75
  import smtplib
38
76
 
@@ -117,3 +155,5 @@
117
155
  if __name__ == '__main__':
118
156
 
119
157
  main()
158
+
159
+ ```