萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> python實現在sqlite動態創建表的方法

python實現在sqlite動態創建表的方法

   這篇文章主要介紹了python實現在sqlite動態創建表的方法,涉及Python操作SQLite數據庫創建數據表的技巧,具有一定參考借鑒價值,需要的朋友可以參考下

  本文實例講述了python實現在sqlite動態創建表的方法。分享給大家供大家參考。具體實現方法如下:

  ?

1 2 3 4 5 import sqlite3 as db conn = db.connect('mytest.db') cursor = conn.cursor() cursor.execute("create table person(name text,age text,address text)") print("table created")

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

        注< >:更多精彩教程請關注三聯編程

copyright © 萬盛學電腦網 all rights reserved