gpt4 book ai didi

python - Bottle 中的原始输入模拟

转载 作者:太空宇宙 更新时间:2023-11-03 18:55:54 24 4
gpt4 key购买 nike

我不知道如何在 Bottle 框架中制作 raw_input() 。

for idx, d in enumerate(student):
for ids, s in enumerate(student):
if d['Name'] == s['Name'] and idx != ids:
print d,idx
l=raw_input('input number to delete')
student.pop(int(l))
for m in student:
for k in olympiad:
if m['Name']==k['Name']:
this.append(k)

如果我返回模板而不是 raw_input() 我将丢失所有其他操作。我不想在控制台中编写此操作。

最佳答案

Bottle 是一个 Web 框架,因此它的所有输入和输出都通过 Web 服务器发生。这意味着,如果 Web 服务器甚至有一个标准输入,它肯定不会连接到任何 Web 浏览器,因此 raw_input 在 Bottle WSGI 环境中没有用处。

在 WSGI 下获取用户输入的最普通方法是通过 POST 浏览器请求。为此,您应该了解 Bottle forms .

关于python - Bottle 中的原始输入模拟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17257810/

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