from shutil import copy src_path = 'example.txt' destination_path = 'example-new.txt' copy(src_path, destination_path) print('File copied and ...
確定! 回上一頁