gpt4 book ai didi

python - 从 SQL 查询的 Python 列表中删除括号

转载 作者:太空宇宙 更新时间:2023-11-04 01:31:01 27 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Python challenging string encoding

我正在尝试将代码列表放入 SQL 查询中。我是 Python 新手。

cus 是一个列表,设置为 ['x', 'y', ..., 'a']

test = psql.frame_query(
"select * from dataBase where cus IN (%r)", con = db) % cus

我试过了,但失败了。

我的下一次尝试是尝试删除括号,然后将列表粘贴进去。如何删除括号以便获得:

cus2 = 'x', 'y', ..., 'a'

我打算做的:

str = "select * from dataBase where cus IN (%r)" % cus2
test2 = psql.frame_query(str, con = db)

或者我应该尝试其他方法吗?

谢谢。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com