函数重启后返回不起作用

时间:2018-11-24 00:11:42

标签: python function return

$('input.consultation').click(function(){
  $(this).text() = consultation_value;
  $('#consultation').text() = consultation_value;
  console.log(consultation_value);
});

$('input.provider').click(function(){
  $(this).text() = provider_value;
  $('#provider').text() = provider_value;
  console.log(provider_value);
});

我已经在此功能上停留了一段时间,如果输入了错误的输入(错误的输入意味着不在列表def N_C(question,choice): N_C_choice_count_max = len(choice) N_C_choice_count_min = N_C_choice_count_max - N_C_choice_count_max N_C_choices = [] print(question) for i in range (N_C_choice_count_min,N_C_choice_count_max): print(N_C_choice_count_min+i+1,":",choice[i]) str(N_C_choices.append(N_C_choice_count_min+i+1)) N_C_input = input(">") if str(N_C_input) in str(N_C_choices): return(N_C_input) else: print(N_C("question",["1","2","3"])) 中),我需要一种重新启动它的方法。

当我尝试添加时:

N_C_choices

重新启动后只会显示else: N_C(question,choice)

对此有类似的问题,没有经常使用本网站,因此,如果您需要更多信息,请询问。

0 个答案:

没有答案