发布网友 发布时间:2022-03-24 02:11
共2个回答
热心网友 时间:2022-03-24 03:41
使用os模块中的remove()方法。
import osHelp on built-in function remove in mole posix:
热心网友 时间:2022-03-24 04:59
付费内容限时免费查看回答用python操作数据库进行删除操作如下import pymysql
#删除
host="localhost"
user="root"
passwd="123456"
db="qu"
# 打开数据库连接
conn = pymysql.connect(host,user,passwd,db)
try:
# 使用 cursor() 方法创建一个游标对象 cursor
cursor = conn.cursor()
id = input("请输入你要删除id:")
# SQL 删除语句
sql =('delete from test where id={}'.format(id))
# 执行SQL语句
cursor.execute(sql)
# 确认修改
conn.commit()
# 关闭游标
cursor.close()
# 关闭链接
conn.close()
print("删除成功")
except:
print("删除失败")
这里只要我们输入id号,对应的所有字段所有值都会删除,我在上一篇更新操作也有写到,如果你想对单个字段的数据进行删除, 你也可以使用上篇中的键值对的方法