import MySQLdb
db = MySQLdb.connect(host = "localhost",user = "root",passwd = " ",db = "TESTDB" )
cursor = db.cursor()
sql = """CREATE TABLE CRAWLER (
FIRST_NAME CHAR(20) NOT NULL,
LAST_NAME CHAR(20),
AGE INT,
SEX CHAR(1),
INCOME FLOAT )"""
cursor.execute(sql)
db.close()
when i execute this code there is an error occure like
OperationalError: (1045, "Access denied for user 'root'@'localhost' (using password: YES)")
what can i do? pls clarify this....