Posts by Heitor Penha do Carmo • 8 points
2 posts
-
-4
votes1
answer243
viewsA: Integration with Python and JS
in your case I would recommend building an API in the Python backend to receive a Javascript request already with the contents of the attached image and only later to send the email. I recommend you…
-
0
votes1
answer84
viewsA: How to use While in Python 3?
The while is a repeat loop. It causes a set of instructions to be executed while a condition is true. When this condition ceases to be true, the loop is stopped, see example below: contador = 0…