+ 9
What does ... program finished with exit code 0 mean in python ?
34 odpowiedzi
+ 12
This means that your code have successfully exited without any errors/problems.
+ 10
0 means successful execution of code.
1 means unsuccessful execution...
+ 7
Samah Mamour can you please show us your code so we can understand more as to how to address... As we stated 0 means successful execution.
+ 7
right now I am finding several errors which I'm trying to work through... right now I'm running into naming issues and a few indention issues... Samah Mamour but I think I'm getting closer
+ 5
Ok a quick translation by Google https://code.sololearn.com/cqJBJS8vdL94/?ref=app
+ 4
contenter Samah Mamour
or s'il vous plaît ...
Je connais un peu de français
+ 3
Code run successful
+ 3
That will occur when your code have successfully exited without any errors..
Actually it is -
0 for successful execution of code & 1 for unsuccessful execution of code.
+ 2
The problem is that my program isn't in english :( but french ! I will show you if you want ?
+ 2
I think you can understand it i will show you :)
+ 2
Valeur = value
+ 2
Yes that's it did you find the error please ?
+ 2
The exit code is what is returned to the operating system once the program finishes execution.
It depends on the operating system you are running, but generally if 0 is returned, that signifies that it ran without any issues (exceptions, panics). If it is not 0, something may have gone wrong.
+ 2
Thanks
+ 2
Samah Mamour , thanks to BroFar (for translating this code) here I have tried removed all the syntactical errors in this code. 👇
https://code.sololearn.com/c58tLf7Iuigb/?ref=app
+ 2
It means true as in boolean
+ 2
Hacked please remove all the excessive comments as you are spamming and not giving relevant information to the question.
Thanks and happy coding.
https://code.sololearn.com/Wv5gTHy1N6Ji/?ref=app
https://www.sololearn.com/discuss/1316935/?ref=app
+ 1
But if there is no error why the compiler exit nd how can i solve it when there is no error ?
+ 1
taille_page = int(input("entrez la taille d'une page virtuelle en octet: "))
nbr_page_v = int(input("entrez le nombre de page virtuelle: "))
nbr_cadres = int(input("entrez le nombre de cadres en mémoire physique: "))
contenu_cadres = []
print("maintenant veuillez ajouter le contenue des cadres en tapant (-1) si le cadre ne contient aucune page ,sinon tapez la valeur du numéro de page associé ! : ")
for i in range(nbr_cadres):
contenue=int(input())
contenu_cadres.append(contenue)
num_adresse_recherché = int(input("entrez le numero de page à rechercher !: "))
adresse_virtuelle = num_adresse_recherché//taille_page
décalage = num_adresse_recherché % taille_page
print("la page que vous chercher se trouve dans la page {} avec un décalage de {}".format(adresse_virtuelle, décalage))
valeur = int(input("entrez la page que cherchez son cadre !: "))
for i in range(contenu_cadres):
if i == ("valeur"):
print(i)
+ 1
Cadre = frame