Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I can't delete the file using os.remove because some problem with the path.
here is the source code: http://www.filedropper.com/install_5
or : http://pastebin.com/L0na3XPm
i would be happy if someone can help me , thank you all
love
I see the line:
rmv=dst+"\\insatll.py"
Is this supposed to be "\\install.py" ?
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 days ago.
Improve this question
I am a newbie and I am learning. When I was writing an object detection project, I encountered this error, but I could not reach a conclusion. Can anyone help me?
when i run this code i get an error :
code and error
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 days ago.
Improve this question
I'm rinning this GitHub code
It running well but having error in this line after trained model, and while testing to get the accuracy.
a = new_model.predict_generator(test_gen)
it says "NameError: name 'new_model' is not defined"
I want to know how to define 'new_model' before?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
I am getting the error erroneously in Pycharm:
TypedDict "RPCResponse" has no key 'elapsed_time'
How can I ignore it?
Put
# noinspection PyTypedDict
above it.
More info on the error: https://www.python.org/dev/peps/pep-0589/
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I am getting this error time data 2020-07-09T00:00:00+05:30 does not match format yyyy-MM-dd'T'HH:mm:ssZ please help
datetime.datetime.fromisoformat('2020-07-09T00:00:00+05:30')
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I am a new user for python and I know there are a few discussions about this; however, I still cannot fix it.
I execute my homework as the following code:
How to fix the error in my code? please advise, thanks!
Your ut variable is an array,
try to change (line 69)
u = lambda t,x : ut(t)
to
u = lambda t,x : ut[t]