python - MySQL
# Python-MySQL Integration:
# Lab-1 [to create DB and show all DBs]
import mysql.connector
mydb=mysql.connector.connect(host="localhost", user="root", password="xxxxxxx")
print(mydb)
mycursor = mydb.cursor()
#mycursor.execute("create database pooj...
naren-cloud.hashnode.dev1 min read