gpt4 book ai didi

python - 如何从元组中删除 u' 和 '

转载 作者:太空宇宙 更新时间:2023-11-04 09:50:17 25 4
gpt4 key购买 nike

<分区>

我看到有人问过这个问题,但我看到的解决方案对我不起作用。

我有一个带有元组列表的 python 脚本,我想在没有 unicode 字符 (u') 且没有任何其他字符(如 < [] > 或 < ' >)的情况下检索它,因此只有数据会传递给参数。

我的代码是这样的——

sql_cursor = con.cursor()
cursor = con.cursor()
cursor.execute(get_alerted_ip)
Results = cursor.fetchall()
for row in Results:
ip_to_open.append(row)
print (row)
con.close()

输出是-

(u'172.1.1.124',)

并且想要的输出应该是这样的 -

172.1.1.124

我已经尝试将元组转换为列表或字符串,以便使用替换等方法,但它不起作用。

我做错了什么?请帮忙。

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