Posts by Vitor de Jesus • 19 points
3 posts
-
2
votes0
answers166
viewsQ: (Socket) Client and Server Connection - how to get Cmd-> Client (Python) return
I want to execute a command in the client’s Cmd and return the values to the server. I Already Managed to Execute the command in the client’s Cmd... Now how do I return the values to the server? The…
-
-1
votes1
answer882
viewsQ: Mysql + Python (Save Variable Login To Connect)
import the import getpass import mysql. class Acessdatabase(): UserName = "" PassWard = "" DataBase = "" def LoginDB(self): self.UserName = input("Username: ") os.system("cls") self.PassWard =…
-
0
votes1
answer191
viewsQ: print("...") is running several times
I made a program to check if the reported CPF is valid, but a bug is happening: When I type a valid CPF immediately, the "Cpf..." message is printed once. When I type a wrong number and then enter…