Existe-t-il un moyen d'empêcher python.exe de se fermer immédiatement après son exécution ? Il se ferme plus rapidement que je ne peux lire la sortie.
Voici le programme :
width = float(input("Enter the width: "))
height = float(input("Enter the height: "))
area = width * height
print("The area is", area, "square units.")