Posts by Gabriel • 58 points
2 posts
-
1
votes1
answer96
viewsA: Node.js with Vue.js
Yes. Manage the front with VUE, and the back with Node/express.
-
3
votes2
answers487
viewsQ: Closing a loop, with enter
I’m looking to close one while True: pressing a key, in case simply pressing enter without writing anything. while True: key = input("Press enter") if key == " ": break else: #loop How can I do it?…