我正在写一个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;
});
});
需要你的建议来实现这一点。
答案 0 :(得分:1)
行后:
listofdata =user_data.split()
您可以添加支票,例如:
if len(listofdata) > 10:
print "You should enter 10 integers only, please try again!"
error = True
continue