Получение ошибки типа: ошибка замены() отсутствующего требуемого аргумента «dst» (pos 2). Как это исправить?
#python #typeerror Вопрос: Итак, это мой код import os source = "test.txt" destination = "/Users/Mac/Desktop/test.txt" try: if os.path.exists(destination): print("There is already a file there.") else: os.replace((source,destination)) print(source " was moved.")…