First, you will need the mysql.connector. If you are unsure of how to get this setup, refer to How to Install MySQL Driver in Python.

How to Delete/Drop a MySQL Table in Python

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
import mysql.connector

mydb = mysql.connector.connect(
  host = "localhost",
  user = "username",
  password = "YoUrPaSsWoRd",
  database = "your_database"
)

mycursor = mydb.cursor()
sql = "DROP TABLE customers"
mycursor.execute(sql)

How to Delete/Drop Only if MySQL Table Exists in Python

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
import mysql.connector

mydb = mysql.connector.connect(
  host = "localhost",
  user = "username",
  password = "YoUrPaSsWoRd",
  database = "your_database"
)

mycursor = mydb.cursor()
sql = "DROP TABLE IF EXISTS customers"
mycursor.execute(sql)