Глупый python(или я) не может найти существующий файл
Вот код:
first_name = input('What is name of file which you want to open?(write without ".txt")') #имя файла без расширения .txt
final_name = first_name + ".txt" #имя файла с расширением .txt
fignya = open (final_name, "r") #чтение файла
А вот ошибка:
Traceback (most recent call last):
File "C:/Users/Глеб/AppData/Local/Programs/Python/Python38/Decoder_potc.py", line 3, in <module>
fignya = open (final_name, "r") #чтение файла
FileNotFoundError: [Errno 2] No such file or directory: 'GG.txt'
Вот код:
first_name = input('What is name of file which you want to open?(write without ".txt")') #имя файла без расширения .txt
final_name = first_name + ".txt" #имя файла с расширением .txt
fignya = open (final_name, "r") #чтение файла
А вот ошибка:
Traceback (most recent call last):
File "C:/Users/Глеб/AppData/Local/Programs/Python/Python38/Decoder_potc.py", line 3, in <module>
fignya = open (final_name, "r") #чтение файла
FileNotFoundError: [Errno 2] No such file or directory: 'GG.txt'