這篇文章主要介紹了python連接MySQL數(shù)據(jù)庫(kù),實(shí)例分析了Python操作MySQL的相關(guān)技巧,需要的朋友可以參考下
本文實(shí)例講述了python連接MySQL數(shù)據(jù)庫(kù)的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
- 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()
運(yùn)行結(jié)果如下:
希望本文所述對(duì)大家的python程序設(shè)計(jì)有所幫助。
新聞熱點(diǎn)
疑難解答
圖片精選