萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> python連接MySQL數據庫實例分析

python連接MySQL數據庫實例分析

   本文實例講述了python連接MySQL數據庫的方法。分享給大家供大家參考。具體實現方法如下:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 import MySQLdb conn = MySQLdb.connect(host="localhost", user="root", passwd="123456", db="test") cursor = conn.cursor() cursor.execute("select * from hard") res = cursor.fetchall() for x in res: print x cursor.close() conn.close()

  運行結果如下:

  希望本文所述對大家的python程序設計有所幫助。

copyright © 萬盛學電腦網 all rights reserved