teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

4

2019/12/20 07:00

投稿

退会済みユーザー
title CHANGED
File without changes
body CHANGED
@@ -6,12 +6,4 @@
6
6
    処理2
7
7
  ```
8
8
 
9
- としていますが、実行するとFileNotFoundError:[Errno 2]とエラーメッセージが表示されてしまいます。
10
-
11
- OSErrorやIOErrorなども試してみましたが上手くいきませんでした。
12
-
13
- ご教授頂きたくよろしくお願いいたします。
14
-
15
-
16
-
17
9
  ♯Python3.8

3

2019/12/20 07:00

投稿

退会済みユーザー
title CHANGED
File without changes
body CHANGED
@@ -1,8 +1,10 @@
1
+ ```python
1
2
  try:
2
-  with open(filePath) as f:
3
+  with open(filePath) as f:
3
-    処理1
4
+   処理1
4
-  except FileNotFoundError :
5
+ except FileNotFoundError:
5
-    処理2
6
+   処理2
7
+ ```
6
8
 
7
9
  としていますが、実行するとFileNotFoundError:[Errno 2]とエラーメッセージが表示されてしまいます。
8
10
 
@@ -10,4 +12,6 @@
10
12
 
11
13
  ご教授頂きたくよろしくお願いいたします。
12
14
 
15
+
16
+
13
17
  ♯Python3.8

2

2019/12/20 06:35

投稿

退会済みユーザー
title CHANGED
File without changes
body CHANGED
@@ -1,7 +1,7 @@
1
1
  try:
2
-   with open(filePath) as f:
2
+  with open(filePath) as f:
3
3
     処理1
4
- except FileNotFoundError :
4
+  except FileNotFoundError :
5
5
     処理2
6
6
 
7
7
  としていますが、実行するとFileNotFoundError:[Errno 2]とエラーメッセージが表示されてしまいます。

1

2019/12/20 06:30

投稿

退会済みユーザー
title CHANGED
File without changes
body CHANGED
@@ -1,8 +1,8 @@
1
1
  try:
2
-  with open(filePath) as f:
2
+   with open(filePath) as f:
3
-   処理1
3
+    処理1
4
4
  except FileNotFoundError :
5
-   処理2
5
+    処理2
6
6
 
7
7
  としていますが、実行するとFileNotFoundError:[Errno 2]とエラーメッセージが表示されてしまいます。
8
8