如何在输入框上使用多行?

时间:2016-05-30 20:07:25

标签: vbscript

我正在寻找帮助在VBS输入框上使用多行。 我希望它看起来像这样:

  

请输入所列字母之一!
  一。
  湾
  角
  d。

我无法找到有关如何操作的任何有用信息。我搞砸了一下但似乎没什么用。我似乎有些事情(Chr(13))和东西,但不知道如何在语法中使用它。

1 个答案:

答案 0 :(得分:2)

def row_getter()->int: while True: try: rows=int(input('Please specify the number of rows:')) except ValueError: continue else: # this runs when the input is successfully converted if (rows % 2 == 0 and >= 4 and rows <= 16): return rows # if the condition is not met, the function does not return and # so it continues the loop