逗号分隔值的Html数据到python列表

时间:2016-12-24 13:02:14

标签: python html

我想创建一个html表单,用户可以用逗号分隔格式输入数字,我想将它们作为列表存储在python变量中,可以在函数中使用。

例如,html表单中的2个字段为:

Enter range of number: 1000-2000,2500-2600, 4000-4100

Enter random numbers: 1, 3, 4, 6, 100, 128, 266

python如何将html表单输入存储为

x = ['1000-2000', '2500-2600', '4000-4100']
y = ['1', '3', '4', '6', '100', '128', '266']

我是编程方面的新手,非常感谢您提供一些帮助。

要求是用户可以以逗号分隔格式复制粘贴数字,然后允许python脚本将它们用作输入。

1 个答案:

答案 0 :(得分:0)

听起来您正在寻找str.splitstr.strip;

In [5]: s = '1000-2000,2500-2600, 4000-4100'

In [6]: [a.strip() for a in s.split(',')]
Out[6]: ['1000-2000', '2500-2600', '4000-4100']