copy_file.py from pathlib import Path from shutil import copyfile source = Path('words.txt') destination = Path('words_bck.txt') ...
確定! 回上一頁