MY FIRST MYSQL PROJECT I EVER MADE
FIRST FILE CODE: import mysql . connector as connector ab = 0 asking = int ( input ( " How many numbers you actually want to add: " )) if asking == 0 : pass quit () else: while ab < asking : asking -= 1 name = input ( " Enter The name you want to add: " ) number = int ( input ( " Enter the number you want to add: " )) a = connector . Connect ( host = " localhost " , user = " root " , passw...
Comments
Post a Comment