質問編集履歴
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,10 +8,8 @@
|
|
8
8
|
|
9
9
|
print(os.path.abspath('path1'))
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
/kaggle/path1
|
14
|
-
|
15
11
|
```
|
16
12
|
|
13
|
+
/kaggle/path1という出力がされます。
|
14
|
+
|
17
15
|
どうすればカレントディレクトリの絶対パスを知ることができるのでしょうか?
|
1
コードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
```python
|
4
4
|
|
5
|
-
mport os
|
5
|
+
import os
|
6
6
|
|
7
7
|
path1 = os.getcwd()
|
8
8
|
|