Python字典如何存儲MySQL數據庫中的數據?
字典,以便于數據的訪問和管理。
```port MySQLdb
# 連接MySQL數據庫nnect(host='localhost', user='root', passwd='123456', db='test', charset='utf8')
# 創建游標n.cursor()
# 執行SQL語句
cursor.execute('SELECT * FROM users')
# 獲取查詢結果
result = cursor.fetchall()
data = [] result:
d = {}
d['id'] = row[0]ame'] = row[1]
d['age'] = row[2]d(d)
# 關閉游標和連接
cursor.close()n.close()
字典,其中每個字典對應一行數據,鍵是列名,值是列值。
字典具有靈活的數據結構。我們可以根據需要添加或刪除鍵值對,以便于數據的操作和管理。
字典都是一個非常有用的工具。