xxxxxxxxxx
import shutil
original = r'C:\games' # original folder / file path
target = r'D:\homework' # where to move it
shutil.move(original, target)
xxxxxxxxxx
# Windows
myfile = open('C:/Users/narae/Desktop/alice.txt')
mytxt = myfile.read()
myfile.close()
# Mac and Linux
myfile = open('/Users/narae/Desktop/alice.txt')
mytxt = myfile.read()
myfile.close()