Posts by MarcosVs98 • 1 point
2 posts
-
0
votes1
answer39
viewsA: How to do password validation in python:
Don’t skip the basics, take it easy and try to ask the right questions. Python Tutorials ... while True: senha = str(input("Digite sua senha : ")) if senha.islower(): print("A senha deve ter pelo…
-
0
votes1
answer41
viewsA: How do I send multiple requests to the same URL (same API) in Python?
I believe your problem is not in the concept of "sending multiple requests". But have you stopped to validate this python dictionary mixed with string json.... In which you still convert to json,…