Posts by Carlos Daniel Da Silva Dias • 1 point
1 post
-
-1
votes4
answers10409
viewsA: How do you display "Press ENTER to continue" in Python 3.4?
To end the program just adapt the code to something similar to: while True: sair = str( input( '\nPRESSIONE "ENTER" PARA SAIR ' ) ) if not sair: exit()…