python从sqlite读取并显示数据的方法
程序员文章站
2022-06-26 19:08:08
本文实例讲述了python从sqlite读取并显示数据的方法。分享给大家供大家参考。具体实现方法如下:
import cgi, os, sys
import s...
本文实例讲述了python从sqlite读取并显示数据的方法。分享给大家供大家参考。具体实现方法如下:
import cgi, os, sys import sqlite3 as db conn = db.connect('test.db') cursor = conn.cursor() conn.row_factory = db.Row cursor.execute("select * from person") rows = cursor.fetchall() sys.stdout.write("Content-type: text.html\r\n\r\n") sys.stdout.write("") sys.stdout.write("<html><body><p>") for row in rows: sys.stdout.write("%s %s %s" % (row[0],row[1],row[2])) sys.stdout.write("<br />") sys.stdout.write("</p></body></html>")
希望本文所述对大家的Python程序设计有所帮助。
上一篇: python实现复制整个目录的方法
推荐阅读
-
PHP读取txt文本文件并分页显示的方法
-
php从数据库读取数据,并以json格式返回数据的方法
-
python 解决动态的定义变量名,并给其赋值的方法(大数据处理)
-
Python之csv文件从MySQL数据库导入导出的方法
-
Python实现读取SQLServer数据并插入到MongoDB数据库的方法示例
-
使用python读取txt文件的内容,并删除重复的行数方法
-
php从memcache读取数据再批量写入mysql的方法
-
Python第三方库h5py_读取mat文件并显示值的方法
-
利用python对Excel中的特定数据提取并写入新表的方法
-
python读取excel指定列数据并写入到新的excel方法