質問編集履歴
5
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,9 @@
|
|
2
2
|
|
3
3
|
Get.pyファイルを実行すると、最下部のエラーがでます。
|
4
4
|
|
5
|
+
|
6
|
+
|
5
|
-
|
7
|
+
このエラーですが、一番最後の表記(/home/ec2-user/a/b/move.py)とは、作業しているディレクトリ指定ができていないみたいな事をいっているのでしょうか。
|
6
8
|
|
7
9
|
|
8
10
|
|
4
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
from b.move import move
|
28
28
|
|
29
|
-
move.func(5)
|
29
|
+
print(move.func(5))
|
30
30
|
|
31
31
|
```
|
32
32
|
|
3
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -48,7 +48,7 @@
|
|
48
48
|
|
49
49
|
Traceback (most recent call last):
|
50
50
|
|
51
|
-
File "Get
|
51
|
+
File "Get.py", line 1, in <module>
|
52
52
|
|
53
53
|
from b.move import move
|
54
54
|
|
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
以下のディレクトリで、以下のPYファイルがあります。
|
2
2
|
|
3
|
-
Get
|
3
|
+
Get.pyファイルを実行すると、最下部のエラーがでます。
|
4
4
|
|
5
5
|
何か指定がまちがっているのでしょうか。よろしくお願いします。
|
6
6
|
|
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
- a/
|
12
12
|
|
13
|
-
- Get
|
13
|
+
- Get.py
|
14
14
|
|
15
15
|
- b/
|
16
16
|
|
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
|
22
22
|
|
23
|
-
```Get
|
23
|
+
```Get
|
24
24
|
|
25
25
|
# coding: shift-jis
|
26
26
|
|
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
|
35
35
|
```move
|
36
36
|
|
37
|
-
def func(
|
37
|
+
def func(v):
|
38
38
|
|
39
39
|
i = v+3
|
40
40
|
|