7 lines
113 B
Python
7 lines
113 B
Python
|
|
import os
|
||
|
|
|
||
|
|
os.path.isfile("input.txt")
|
||
|
|
os.path.isfile("/input.txt")
|
||
|
|
os.path.isdir("docs")
|
||
|
|
os.path.isdir("/docs")
|