python从sqlite读取并显示数据的方法

作者:work24 时间:2022-08-27 22:46:24 

本文实例讲述了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,sqlite
0
投稿

猜你喜欢

  • 小白教程|一小时上手最流行的前端框架vue(推荐)

    2024-04-30 10:34:20
  • python基于concurrent模块实现多线程

    2023-09-10 18:33:46
  • PyQt5实现无边框窗口的标题拖动和窗口缩放

    2023-01-17 20:09:45
  • ASP编程入门进阶(十四):Browser & Linkin

    2008-06-12 07:08:00
  • 基于Python实现电影售票系统

    2021-02-21 16:26:05
  • Python实现检测文件MD5值的方法示例

    2023-05-08 11:41:45
  • python实现健康码查验系统

    2022-06-27 06:31:34
  • 详解MySQL中的NULL值

    2024-01-14 16:05:00
  • node.js实现BigPipe详解

    2024-05-05 09:22:17
  • WebStorm安装配置教程

    2022-01-17 01:25:24
  • php 常用字符串函数总结

    2024-06-05 09:47:33
  • OpenCV+Imutils实现图像的旋转操作

    2021-07-25 20:39:42
  • Python如何使用带有 for 循环的 Lambda 函数

    2021-05-28 05:06:05
  • Python Flask实现后台任务轻松构建高效API应用

    2021-09-25 01:37:43
  • PyTorch模型保存与加载实例详解

    2022-02-24 20:08:56
  • python merge、concat合并数据集的实例讲解

    2023-01-23 16:30:38
  • 14条最佳JS代码编写技巧[译]

    2009-11-09 19:37:00
  • pygame游戏之旅 游戏中添加显示文字

    2023-03-26 02:56:23
  • python实现的AES双向对称加密解密与用法分析

    2022-08-11 00:42:32
  • 数据库查询哪个对像里面包含什么字段方法语句

    2024-01-24 10:32:56
  • asp之家 网络编程 m.aspxhome.com