“CP Python” Ответ

Скопировать файл в Python3

import shutil

original = r'original path where the file is currently stored\file name.file extension'
target = r'target path where the file will be copied\file name.file extension'

shutil.copyfile(original, target)
XeN0N

CP Python

import shutil

source = r"C:\Users\tsmehra\dev\example\demo.txt"
destination = r"D:\example2"

print("The demo.txt has copied at:")
print(shutil.copy(source, destination))

Output

The demo.txt has copied at:
D:\example2\demo.txt
Careful Capuchin

Ответы похожие на “CP Python”

Вопросы похожие на “CP Python”

Больше похожих ответов на “CP Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования