Как прочитать файл при изменении пути к файлу с помощью кода Python?
The problem : I want to run this python script from cmd: C:\User\X\Data>PyScript.py. It can read the Test.txt file. Because the Test.txt file in this path > C:\User\X\Data> But, I want to run my python script from cmd : C:\User>C:\User\X\Data\PyScript.py It return, no such file firectory "Test.txt"
Что я уже пробовал:
Input_file = open ("Test.txt", "r") print (Input_file.read())