8 lines
131 B
Python
8 lines
131 B
Python
|
|
import os
|
||
|
|
# current directory
|
||
|
|
os.remove("output.txt")
|
||
|
|
os.rmdir("docs")
|
||
|
|
# root directory
|
||
|
|
os.remove("/output.txt")
|
||
|
|
os.rmdir("/docs")
|