7 lines
158 B
Python
7 lines
158 B
Python
import shutil
|
|
|
|
shutil.move("input.txt", "output.txt")
|
|
shutil.move("docs", "mydocs")
|
|
|
|
shutil.move("/input.txt", "/output.txt")
|
|
shutil.move("/docs", "/mydocs")
|