gpt4 book ai didi

删除单字符串的 MySql

转载 作者:行者123 更新时间:2023-11-30 22:03:11 25 4
gpt4 key购买 nike

我正在用 python atm 学习 MySql。我有 server.py 从 mysql 中提取数据并打印以及将我需要的数据发布到站点。但我需要删除它周围的格式,只显示地址,我意识到它是字典格式,旁边有列表。但可以帮我指出格式化的正确方向。

query = "SELECT email FROM email "                           
email = mysql.query_db(query)
return render_template('index.html', emaillist=email)

我得到了什么

[{u'email': u'anna@gmail.om'}, {u'email': u''}, {u'email': u''},  } 

更新发现我需要在 html 端执行此操作,但这是行不通的。我仍在努力,任何帮助都会有所帮助

{{ email }}
<h1>These are all the Emails!</h1>

{% for email in email: %}
<p>ID: {{ emaillist}}</p>
<hr>
{% endfor %}

最佳答案

你应该能够做这样的事情:

{% for k,v in emaillist.items() %}
<p>Key: {{k}}</p>
<p>Value: {{v}}</p>
<hr>
{% endfor %}

关于删除单字符串的 MySql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42729769/

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