Python脚本从终端输入指定数量的元素

时间:2015-10-19 03:49:46

标签: python raw-input

我正在写一个python程序,其中我想允许用户只从终端输入10个数字。如果他们尝试输入10个以上,它应该提示他们不能输入10个以上的数字。我怎么能在python中实现这一点。我的代码如下所示:

$( document ).ready(function() {
    // set inital delay
    var dtotal = 50;
    $(".row").each(function() {
    //add delay to function
      $(this).delay(dtotal).show();
    //add 200ms to delay for each loop
      dtotal = dtotal + 200;
    });
});

需要你的建议来实现这一点。

1 个答案:

答案 0 :(得分:1)

行后:

listofdata =user_data.split()

您可以添加支票,例如:

if len(listofdata) > 10:
    print "You should enter 10 integers only, please try again!"
    error = True
    continue