gpt4 book ai didi

python - 在python中将fetch_all数组转换为单个数组

转载 作者:太空宇宙 更新时间:2023-11-04 05:12:48 28 4
gpt4 key购买 nike

<分区>

在 python 中,我从数据库中获取所有数据。

SENTENCE = "It is wonderful. I'am happy"
sent= (word_tokenize(SENTENCE))

cursor = conn.cursor()
format_strings = ','.join(['%s'] * len(sent))
cursor.execute("SELECT emotion_type FROM emotion WHERE key_word IN (%s)" % format_strings,tuple(sent))
results = cursor.fetchall()
for i in results:
z= (i)

输出是

('happy',)
('happy',)

但我想得到这样的结果

['happy','happy']

如果有任何可能的方法可以得到我想要的输出。请帮助我!

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