Answer the question
In order to leave comments, you need to log in
Why does the program close immediately?
I have a program in Python. I converted it to an .exe file, the conversion was successful, but the file closes immediately when it starts.
Here
is the code
I
import pickle
with open('listfile.data', 'rb') as filehandle:
music_list = pickle.load(filehandle)
name_music = input("Введите название музыки: ")
put2music = input("Введите путь к музыке: ")
music_list.append(name_music)
music_list.append(put2music)
print(music_list)
with open('listfile.data', 'wb') as filehandle:
pickle.dump(music_list, filehandle)
Answer the question
In order to leave comments, you need to log in
Most likely it cannot find the file 'listfile.data'.
In general, Python in exe is a crutch.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question