有効な応答が得られるまでユーザーに入力を求める


562

ユーザーからの入力を受け付けるプログラムを書いています。

#note: Python 2.7 users should use `raw_input`, the equivalent of 3.X's `input`
age = int(input("Please enter your age: "))
if age >= 18: 
    print("You are able to vote in the United States!")
else:
    print("You are not able to vote in the United States.")

ユーザーが意味のあるデータを入力する限り、プログラムは期待どおりに動作します。

C:\Python\Projects> canyouvote.py
Please enter your age: 23
You are able to vote in the United States!

しかし、ユーザーが無効なデータを入力すると失敗します。

C:\Python\Projects> canyouvote.py
Please enter your age: dickety six
Traceback (most recent call last):
  File "canyouvote.py", line 1, in <module>
    age = int(input("Please enter your age: "))
ValueError: invalid literal for int() with base 10: 'dickety six'

クラッシュする代わりに、プログラムに再度入力を要求します。このような:

C:\Python\Projects> canyouvote.py
Please enter your age: dickety six
Sorry, I didn't understand that.
Please enter your age: 26
You are able to vote in the United States!

意味のないデータが入力されたときに、プログラムがクラッシュする代わりに有効な入力を要求するようにするにはどうすればよいですか?

のような値をどのように拒否できますか?-1これは有効ですintが、このコンテキストでは無意味です?

回答:


704

これを実現する最も簡単な方法は、inputメソッドをwhileループに置くことです。continue悪い入力を受け取ったときに使用し、break満足したときにループを抜けます。

入力で例外が発生する場合

tryおよびexceptを使用て、ユーザーが解析できないデータを入力したことを検出します。

while True:
    try:
        # Note: Python 2.x users should use raw_input, the equivalent of 3.x's input
        age = int(input("Please enter your age: "))
    except ValueError:
        print("Sorry, I didn't understand that.")
        #better try again... Return to the start of the loop
        continue
    else:
        #age was successfully parsed!
        #we're ready to exit the loop.
        break
if age >= 18: 
    print("You are able to vote in the United States!")
else:
    print("You are not able to vote in the United States.")

独自の検証ルールの実装

Pythonが正常に解析できる値を拒否する場合は、独自の検証ロジックを追加できます。

while True:
    data = input("Please enter a loud message (must be all caps): ")
    if not data.isupper():
        print("Sorry, your response was not loud enough.")
        continue
    else:
        #we're happy with the value given.
        #we're ready to exit the loop.
        break

while True:
    data = input("Pick an answer from A to D:")
    if data.lower() not in ('a', 'b', 'c', 'd'):
        print("Not an appropriate choice.")
    else:
        break

例外処理とカスタム検証の組み合わせ

上記の両方の手法を1つのループに組み合わせることができます。

while True:
    try:
        age = int(input("Please enter your age: "))
    except ValueError:
        print("Sorry, I didn't understand that.")
        continue

    if age < 0:
        print("Sorry, your response must not be negative.")
        continue
    else:
        #age was successfully parsed, and we're happy with its value.
        #we're ready to exit the loop.
        break
if age >= 18: 
    print("You are able to vote in the United States!")
else:
    print("You are not able to vote in the United States.")

すべてを関数にカプセル化する

多くの異なる値をユーザーに要求する必要がある場合は、このコードを関数に配置すると便利な場合があるため、毎回コードを再入力する必要はありません。

def get_non_negative_int(prompt):
    while True:
        try:
            value = int(input(prompt))
        except ValueError:
            print("Sorry, I didn't understand that.")
            continue

        if value < 0:
            print("Sorry, your response must not be negative.")
            continue
        else:
            break
    return value

age = get_non_negative_int("Please enter your age: ")
kids = get_non_negative_int("Please enter the number of children you have: ")
salary = get_non_negative_int("Please enter your yearly earnings, in dollars: ")

すべてを一緒に入れて

このアイデアを拡張して、非常に一般的な入力関数を作成できます。

def sanitised_input(prompt, type_=None, min_=None, max_=None, range_=None):
    if min_ is not None and max_ is not None and max_ < min_:
        raise ValueError("min_ must be less than or equal to max_.")
    while True:
        ui = input(prompt)
        if type_ is not None:
            try:
                ui = type_(ui)
            except ValueError:
                print("Input type must be {0}.".format(type_.__name__))
                continue
        if max_ is not None and ui > max_:
            print("Input must be less than or equal to {0}.".format(max_))
        elif min_ is not None and ui < min_:
            print("Input must be greater than or equal to {0}.".format(min_))
        elif range_ is not None and ui not in range_:
            if isinstance(range_, range):
                template = "Input must be between {0.start} and {0.stop}."
                print(template.format(range_))
            else:
                template = "Input must be {0}."
                if len(range_) == 1:
                    print(template.format(*range_))
                else:
                    expected = " or ".join((
                        ", ".join(str(x) for x in range_[:-1]),
                        str(range_[-1])
                    ))
                    print(template.format(expected))
        else:
            return ui

次のような使用法で:

age = sanitised_input("Enter your age: ", int, 1, 101)
answer = sanitised_input("Enter your answer: ", str.lower, range_=('a', 'b', 'c', 'd'))

一般的な落とし穴、およびそれらを避けるべき理由

冗長なinputステートメントの冗長な使用

この方法は機能しますが、一般的に貧弱なスタイルと見なされています。

data = input("Please enter a loud message (must be all caps): ")
while not data.isupper():
    print("Sorry, your response was not loud enough.")
    data = input("Please enter a loud message (must be all caps): ")

while True方法より短いため、最初は魅力的に見えるかもしれませんが、ソフトウェア開発の原則である「繰り返していけない」に違反しています。これにより、システムにバグが発生する可能性が高くなります。に変更inputして2.7にバックポートしたいraw_inputが、誤ってinput上記の最初のものだけを変更した場合はどうなりますか?それはSyntaxError起こるのを待つだけです。

再帰はスタックを爆破します

再帰について学習したばかりの場合get_non_negative_intは、whileループを破棄できるように再帰を使用したくなるかもしれません。

def get_non_negative_int(prompt):
    try:
        value = int(input(prompt))
    except ValueError:
        print("Sorry, I didn't understand that.")
        return get_non_negative_int(prompt)

    if value < 0:
        print("Sorry, your response must not be negative.")
        return get_non_negative_int(prompt)
    else:
        return value

これはほとんどの場合正常に機能するように見えますが、ユーザーが無効なデータを何度も入力すると、スクリプトはRuntimeError: maximum recursion depth exceeded。あなたは「愚か者が連続して1000の間違いを犯すことはない」と思うかもしれませんが、愚か者の独創性を過小評価しています!


53
多くの例を挙げてそれを読むのは楽しいです。過小評価されたレッスン:「愚か者の独創性を過小評価しないでください!」
vpibano 2017年

3
どちらにしても、質の高いQ&Aに賛成票を投じただけでなく、「ディケット6」で契約を締結しました。よくやった、@ Kevin。
エレカルパー、

1
愚か者や巧妙な攻撃者の創意工夫を推定しないでください。この種の場合、DOS攻撃が最も簡単ですが、他の攻撃も可能です。
ソロモンウッコ

冗長な入力の代わりに新しい「セイウチ」演算子を使用できますか?スタイルも悪いですか?
J Arun Mani

1
@JArunManiスタイルが悪いとは思いませんが、少し読みにくいかもしれません。実際input、ループごとに1つしかなく、ループは非常に短くなりますが、状態はかなり長くなる可能性があります...
Tomerikoo

39

なぜa while Trueを実行してから、このループを抜けるのですか。必要なのは、年齢を超えたら停止するだけなので、whileステートメントに要件を入力することもできますか?

age = None
while age is None:
    input_value = input("Please enter your age: ")
    try:
        # try and convert the string input to a number
        age = int(input_value)
    except ValueError:
        # tell the user off
        print("{input} is not a number, please enter a number only".format(input=input_value))
if age >= 18:
    print("You are able to vote in the United States!")
else:
    print("You are not able to vote in the United States.")

これにより、次のようになります。

Please enter your age: *potato*
potato is not a number, please enter a number only
Please enter your age: *5*
You are not able to vote in the United States.

年齢が意味をなさない値を持つことは決してなく、コードは「ビジネスプロセス」のロジックに従うため、これは機能します


22

受け入れられた答えは素晴らしいですが。この問題の簡単なハックについてもお話ししたいと思います。(これは負の年齢問題も処理します。)

f=lambda age: (age.isdigit() and ((int(age)>=18  and "Can vote" ) or "Cannot vote")) or \
f(input("invalid input. Try again\nPlease enter your age: "))
print(f(input("Please enter your age: ")))

PSこのコードはpython 3.x用です。


1
このコードは再帰的ですが、ここでは再帰は必要ありません。Kevinが言ったように、スタックを破壊する可能性があります。
PM 2Ring 2016年

2
@ PM2Ring-あなたは正しいです。しかし、ここでの私の目的は、「短絡」が長いコードの断片をどのように最小化(美化)できるかを示すことだけでした。
aaveg 2016

11
なぜラムダを変数に割り当てるのか、def代わりに使用してください。def f(age):よりはるかに明確ですf = lambda age:
GP89

3
場合によっては、年齢を1回だけ必要とし、その機能を使用しないこともあります。関数を使用して、ジョブの完了後にそれを破棄することができます。また、これは最善の方法ではないかもしれませんが、それは間違いなくそれを行う別の方法です(これが私のソリューションの目的でした)。
aaveg

@aavegユーザーが提供した年齢を実際に保存するには、このコードをどのように変換しますか?
Tytire Recubans

12

だから、私は最近これに似たものをいじくり回していて、論理的な方法でチェックされる前に、ジャンクを拒否する入力を取得する方法を使用する次のソリューションを思いつきました。

read_single_keypress()礼儀https://stackoverflow.com/a/6599441/4532996

def read_single_keypress() -> str:
    """Waits for a single keypress on stdin.
    -- from :: https://stackoverflow.com/a/6599441/4532996
    """

    import termios, fcntl, sys, os
    fd = sys.stdin.fileno()
    # save old state
    flags_save = fcntl.fcntl(fd, fcntl.F_GETFL)
    attrs_save = termios.tcgetattr(fd)
    # make raw - the way to do this comes from the termios(3) man page.
    attrs = list(attrs_save) # copy the stored version to update
    # iflag
    attrs[0] &= ~(termios.IGNBRK | termios.BRKINT | termios.PARMRK
                  | termios.ISTRIP | termios.INLCR | termios. IGNCR
                  | termios.ICRNL | termios.IXON )
    # oflag
    attrs[1] &= ~termios.OPOST
    # cflag
    attrs[2] &= ~(termios.CSIZE | termios. PARENB)
    attrs[2] |= termios.CS8
    # lflag
    attrs[3] &= ~(termios.ECHONL | termios.ECHO | termios.ICANON
                  | termios.ISIG | termios.IEXTEN)
    termios.tcsetattr(fd, termios.TCSANOW, attrs)
    # turn off non-blocking
    fcntl.fcntl(fd, fcntl.F_SETFL, flags_save & ~os.O_NONBLOCK)
    # read a single keystroke
    try:
        ret = sys.stdin.read(1) # returns a single character
    except KeyboardInterrupt:
        ret = 0
    finally:
        # restore old state
        termios.tcsetattr(fd, termios.TCSAFLUSH, attrs_save)
        fcntl.fcntl(fd, fcntl.F_SETFL, flags_save)
    return ret

def until_not_multi(chars) -> str:
    """read stdin until !(chars)"""
    import sys
    chars = list(chars)
    y = ""
    sys.stdout.flush()
    while True:
        i = read_single_keypress()
        _ = sys.stdout.write(i)
        sys.stdout.flush()
        if i not in chars:
            break
        y += i
    return y

def _can_you_vote() -> str:
    """a practical example:
    test if a user can vote based purely on keypresses"""
    print("can you vote? age : ", end="")
    x = int("0" + until_not_multi("0123456789"))
    if not x:
        print("\nsorry, age can only consist of digits.")
        return
    print("your age is", x, "\nYou can vote!" if x >= 18 else "Sorry! you can't vote")

_can_you_vote()

ここで完全なモジュールを見つけることができます。

例:

$ ./input_constrain.py
can you vote? age : a
sorry, age can only consist of digits.
$ ./input_constrain.py 
can you vote? age : 23<RETURN>
your age is 23
You can vote!
$ _

この実装の性質は、数字ではない何かが読み取られるとすぐにstdinを閉じることに注意してください。Enterを押した後aは入力しませんでしたが、数字を入力する必要がありました。

これをthismany()同じモジュールの関数とマージして、たとえば3桁のみを許可することができます。


12

機能的アプローチ、または「ループはループなし!」:

from itertools import chain, repeat

prompts = chain(["Enter a number: "], repeat("Not a number! Try again: "))
replies = map(input, prompts)
valid_response = next(filter(str.isdigit, replies))
print(valid_response)
Enter a number:  a
Not a number! Try again:  b
Not a number! Try again:  1
1

または、他の回答のように、「不正な入力」メッセージを入力プロンプトから分離したい場合:

prompt_msg = "Enter a number: "
bad_input_msg = "Sorry, I didn't understand that."
prompts = chain([prompt_msg], repeat('\n'.join([bad_input_msg, prompt_msg])))
replies = map(input, prompts)
valid_response = next(filter(str.isdigit, replies))
print(valid_response)
Enter a number:  a
Sorry, I didn't understand that.
Enter a number:  b
Sorry, I didn't understand that.
Enter a number:  1
1

どのように機能しますか?

  1. prompts = chain(["Enter a number: "], repeat("Not a number! Try again: "))
    とのこの組み合わせはitertools.chainitertools.repeat文字列を"Enter a number: "1回、"Not a number! Try again: "無限回数生成するイテレータを作成します。
    for prompt in prompts:
        print(prompt)
    Enter a number: 
    Not a number! Try again: 
    Not a number! Try again: 
    Not a number! Try again: 
    # ... and so on
  2. replies = map(input, prompts)-ここでmapprompts、前のステップのすべての文字列をinput関数に適用します。例えば:
    for reply in replies:
        print(reply)
    Enter a number:  a
    a
    Not a number! Try again:  1
    1
    Not a number! Try again:  it doesn't care now
    it doesn't care now
    # and so on...
  3. とを使用してfilterstr.isdigit数字のみを含む文字列を除外します。
    only_digits = filter(str.isdigit, replies)
    for reply in only_digits:
        print(reply)
    Enter a number:  a
    Not a number! Try again:  1
    1
    Not a number! Try again:  2
    2
    Not a number! Try again:  b
    Not a number! Try again: # and so on...
    そして、最初の数字のみの文字列のみを取得するために使用しますnext

その他の検証ルール:

  1. 文字列メソッド:もちろん、他の文字列メソッドを使用してstr.isalpha、アルファベット文字列str.isupperのみを取得したり、大文字のみを取得したりできます。完全なリストについては、ドキュメントを参照してください。

  2. メンバーシップテスト:
    実行するにはいくつかの方法があります。それらの1つは__contains__メソッドを使用することです。

    from itertools import chain, repeat
    
    fruits = {'apple', 'orange', 'peach'}
    prompts = chain(["Enter a fruit: "], repeat("I don't know this one! Try again: "))
    replies = map(input, prompts)
    valid_response = next(filter(fruits.__contains__, replies))
    print(valid_response)
    Enter a fruit:  1
    I don't know this one! Try again:  foo
    I don't know this one! Try again:  apple
    apple
  3. 数値比較:
    ここで使用できる便利な比較方法があります。たとえば、__lt__<)の場合:

    from itertools import chain, repeat
    
    prompts = chain(["Enter a positive number:"], repeat("I need a positive number! Try again:"))
    replies = map(input, prompts)
    numeric_strings = filter(str.isnumeric, replies)
    numbers = map(float, numeric_strings)
    is_positive = (0.).__lt__
    valid_response = next(filter(is_positive, numbers))
    print(valid_response)
    Enter a positive number: a
    I need a positive number! Try again: -5
    I need a positive number! Try again: 0
    I need a positive number! Try again: 5
    5.0

    または、dunderメソッド(dunder = double-underscore)を使用したくない場合は、いつでも独自の関数を定義するか、operatorモジュールの関数を使用できます。

  4. パスの存在:
    ここでは、pathlibライブラリとそのPath.existsメソッドを使用できます。

    from itertools import chain, repeat
    from pathlib import Path
    
    prompts = chain(["Enter a path: "], repeat("This path doesn't exist! Try again: "))
    replies = map(input, prompts)
    paths = map(Path, replies)
    valid_response = next(filter(Path.exists, paths))
    print(valid_response)
    Enter a path:  a b c
    This path doesn't exist! Try again:  1
    This path doesn't exist! Try again:  existing_file.txt
    existing_file.txt

試行回数の制限:

無限に何かを尋ねることでユーザーを拷問したくない場合は、の呼び出しで制限を指定できますitertools.repeat。これは、next関数にデフォルト値を提供することと組み合わせることができます。

from itertools import chain, repeat

prompts = chain(["Enter a number:"], repeat("Not a number! Try again:", 2))
replies = map(input, prompts)
valid_response = next(filter(str.isdigit, replies), None)
print("You've failed miserably!" if valid_response is None else 'Well done!')
Enter a number: a
Not a number! Try again: b
Not a number! Try again: c
You've failed miserably!

入力データの前処理:

ユーザーが誤って提供されている場合時々 、入力を拒否したくないCAPS INまたは文字列の先頭または末尾にスペースを。これらの単純な間違いを考慮に入れるためにstr.lowerstr.stripメソッドとメソッドを適用して入力データを前処理できます。たとえば、メンバーシップテストの場合、コードは次のようになります。

from itertools import chain, repeat

fruits = {'apple', 'orange', 'peach'}
prompts = chain(["Enter a fruit: "], repeat("I don't know this one! Try again: "))
replies = map(input, prompts)
lowercased_replies = map(str.lower, replies)
stripped_replies = map(str.strip, lowercased_replies)
valid_response = next(filter(fruits.__contains__, stripped_replies))
print(valid_response)
Enter a fruit:  duck
I don't know this one! Try again:     Orange
orange

前処理に使用する関数が多い場合は、関数合成を行う関数を使用した方が簡単な場合があります。たとえば、ここからのものを使用します

from itertools import chain, repeat

from lz.functional import compose

fruits = {'apple', 'orange', 'peach'}
prompts = chain(["Enter a fruit: "], repeat("I don't know this one! Try again: "))
replies = map(input, prompts)
process = compose(str.strip, str.lower)  # you can add more functions here
processed_replies = map(process, replies)
valid_response = next(filter(fruits.__contains__, processed_replies))
print(valid_response)
Enter a fruit:  potato
I don't know this one! Try again:   PEACH
peach

検証ルールを組み合わせる:

単純なケースでは、たとえば、プログラムが1から120までの年齢を要求する場合、別の年齢を追加できますfilter

from itertools import chain, repeat

prompt_msg = "Enter your age (1-120): "
bad_input_msg = "Wrong input."
prompts = chain([prompt_msg], repeat('\n'.join([bad_input_msg, prompt_msg])))
replies = map(input, prompts)
numeric_replies = filter(str.isdigit, replies)
ages = map(int, numeric_replies)
positive_ages = filter((0).__lt__, ages)
not_too_big_ages = filter((120).__ge__, positive_ages)
valid_response = next(not_too_big_ages)
print(valid_response)

ただし、多くのルールがある場合は、論理結合を実行する関数を実装することをお勧めします。次の例では、ここから既製のものを使用します

from functools import partial
from itertools import chain, repeat

from lz.logical import conjoin


def is_one_letter(string: str) -> bool:
    return len(string) == 1


rules = [str.isalpha, str.isupper, is_one_letter, 'C'.__le__, 'P'.__ge__]

prompt_msg = "Enter a letter (C-P): "
bad_input_msg = "Wrong input."
prompts = chain([prompt_msg], repeat('\n'.join([bad_input_msg, prompt_msg])))
replies = map(input, prompts)
valid_response = next(filter(conjoin(*rules), replies))
print(valid_response)
Enter a letter (C-P):  5
Wrong input.
Enter a letter (C-P):  f
Wrong input.
Enter a letter (C-P):  CDE
Wrong input.
Enter a letter (C-P):  Q
Wrong input.
Enter a letter (C-P):  N
N

残念ながら、失敗したケースごとにカスタムメッセージが必要な場合は、残念ながら、かなり機能的な方法はありません。または、少なくとも、私はそれを見つけることができませんでした。


なんと徹底的で素晴らしい答えでしたか、説明の詳細は素晴らしかったです。
Locane

あなたのスタイルを使用して、空白を削除し、メンバーシップテストの入力を小文字にするにはどうすればよいでしょうか。大文字と小文字の両方の例を含める必要があるセットを作成したくありません。空白の入力ミスも許容したいと思います。
オースティン

1
@オースティン前処理に関する新しいセクションを追加しました。見てください。
ジョージー

それは私にReactiveXを思い出させます。しかし、おそらくそれはそもそも関数型言語に触発されたのでしょうか?
Mateen Ulhaq

8

クリックを使用:

Clickはコマンドラインインターフェイスのライブラリであり、ユーザーに有効な応答を求める機能を提供します。

簡単な例:

import click

number = click.prompt('Please enter a number', type=float)
print(number)
Please enter a number: 
 a
Error: a is not a valid floating point value
Please enter a number: 
 10
10.0

文字列値をフロートに自動的に変換する方法に注意してください。

値が範囲内かどうかの確認:

提供されるさまざまなカスタムタイプがあります。使用できる特定の範囲の数値を取得するにはIntRange

age = click.prompt("What's your age?", type=click.IntRange(1, 120))
print(age)
What's your age?: 
 a
Error: a is not a valid integer
What's your age?: 
 0
Error: 0 is not in the valid range of 1 to 120.
What's your age?: 
 5
5

また、制限の一つだけ指定することができますminmax

age = click.prompt("What's your age?", type=click.IntRange(min=14))
print(age)
What's your age?: 
 0
Error: 0 is smaller than the minimum valid value 14.
What's your age?: 
 18
18

メンバーシップテスト:

click.Choiceタイプを使用します。デフォルトでは、このチェックでは大文字と小文字が区別されます。

choices = {'apple', 'orange', 'peach'}
choice = click.prompt('Provide a fruit', type=click.Choice(choices, case_sensitive=False))
print(choice)
Provide a fruit (apple, peach, orange): 
 banana
Error: invalid choice: banana. (choose from apple, peach, orange)
Provide a fruit (apple, peach, orange): 
 OrAnGe
orange

パスとファイルの操作:

click.Pathタイプを使用して、既存のパスを確認して解決することもできます。

path = click.prompt('Provide path', type=click.Path(exists=True, resolve_path=True))
print(path)
Provide path: 
 nonexistent
Error: Path "nonexistent" does not exist.
Provide path: 
 existing_folder
'/path/to/existing_folder

ファイルの読み取りと書き込みは次の方法で実行できますclick.File

file = click.prompt('In which file to write data?', type=click.File('w'))
with file.open():
    file.write('Hello!')
# More info about `lazy=True` at:
# https://click.palletsprojects.com/en/7.x/arguments/#file-opening-safety
file = click.prompt('Which file you wanna read?', type=click.File(lazy=True))
with file.open():
    print(file.read())
In which file to write data?: 
         # <-- provided an empty string, which is an illegal name for a file
In which file to write data?: 
 some_file.txt
Which file you wanna read?: 
 nonexistent.txt
Error: Could not open file: nonexistent.txt: No such file or directory
Which file you wanna read?: 
 some_file.txt
Hello!

その他の例:

パスワードの確認:

password = click.prompt('Enter password', hide_input=True, confirmation_prompt=True)
print(password)
Enter password: 
 ······
Repeat for confirmation: 
 ·
Error: the two entered values do not match
Enter password: 
 ······
Repeat for confirmation: 
 ······
qwerty

デフォルト値:

この場合、Enter値を入力せずに単に(または使用する任意のキー)を押すと、デフォルトの値が得られます。

number = click.prompt('Please enter a number', type=int, default=42)
print(number)
Please enter a number [42]: 
 a
Error: a is not a valid integer
Please enter a number [42]: 

42

3
def validate_age(age):
    if age >=0 :
        return True
    return False

while True:
    try:
        age = int(raw_input("Please enter your age:"))
        if validate_age(age): break
    except ValueError:
        print "Error: Invalid age."

2

Daniel QとPatrick Artnerの優れた提案に基づいて、さらに一般化されたソリューションを次に示します。

# Assuming Python3
import sys

class ValidationError(ValueError):  # thanks Patrick Artner
    pass

def validate_input(prompt, cast=str, cond=(lambda x: True), onerror=None):
    if onerror==None: onerror = {}
    while True:
        try:
            data = cast(input(prompt))
            if not cond(data): raise ValidationError
            return data
        except tuple(onerror.keys()) as e:  # thanks Daniel Q
            print(onerror[type(e)], file=sys.stderr)

私は明示的なifand raiseステートメントの代わりにassertアサーションチェックがオフになっている可能性があるので、ましたが、堅牢性を提供するには検証を常にオンにする必要があります。

これは、さまざまな検証条件でさまざまな種類の入力を取得するために使用できます。例えば:

# No validation, equivalent to simple input:
anystr = validate_input("Enter any string: ")

# Get a string containing only letters:
letters = validate_input("Enter letters: ",
    cond=str.isalpha,
    onerror={ValidationError: "Only letters, please!"})

# Get a float in [0, 100]:
percentage = validate_input("Percentage? ",
    cast=float, cond=lambda x: 0.0<=x<=100.0,
    onerror={ValidationError: "Must be between 0 and 100!",
             ValueError: "Not a number!"})

または、元の質問に答えるには:

age = validate_input("Please enter your age: ",
        cast=int, cond=lambda a:0<=a<150,
        onerror={ValidationError: "Enter a plausible age, please!",
                 ValueError: "Enter an integer, please!"})
if age >= 18: 
    print("You are able to vote in the United States!")
else:
    print("You are not able to vote in the United States.")

1

これを試してください:-

def takeInput(required):
  print 'ooo or OOO to exit'
  ans = raw_input('Enter: ')

  if not ans:
      print "You entered nothing...!"
      return takeInput(required) 

      ##  FOR Exit  ## 
  elif ans in ['ooo', 'OOO']:
    print "Closing instance."
    exit()

  else:
    if ans.isdigit():
      current = 'int'
    elif set('[~!@#$%^&*()_+{}":/\']+$').intersection(ans):
      current = 'other'
    elif isinstance(ans,basestring):
      current = 'str'        
    else:
      current = 'none'

  if required == current :
    return ans
  else:
    return takeInput(required)

## pass the value in which type you want [str/int/special character(as other )]
print "input: ", takeInput('str')

0

一方でtry/のexceptブロックが動作する、このタスクを達成するためのより速く、きれいな方法は、使用することですstr.isdigit()

while True:
    age = input("Please enter your age: ")
    if age.isdigit():
        age = int(age)
        break
    else:
        print("Invalid number '{age}'. Try again.".format(age=age))

if age >= 18: 
    print("You are able to vote in the United States!")
else:
    print("You are not able to vote in the United States.")

0

良い質問!このために次のコードを試すことができます。=)

このコードは、ast.literal_eval()を使用して、入力age)のデータ型検索します。次に、次のアルゴリズムに従います。

  1. ユーザーに入力してもらいますage

    1.1。もしageあるfloatか、intデータタイプ:

    • かどうかを確認しますage>=18。の場合age>=18、適切な出力を印刷して終了します。

    • かどうかを確認します0<age<18。の場合0<age<18、適切な出力を印刷して終了します。

    • の場合age<=0、ユーザーに年齢の有効な数値をもう一度入力するように依頼します(つまり、ステップ1に戻ります)。

    1.2。場合ageではないfloatか、intデータタイプ、そして彼女は/再び彼の年齢は、(入力をユーザーに尋ねるすなわち、ステップ1に戻ります)

これがコードです。

from ast import literal_eval

''' This function is used to identify the data type of input data.'''
def input_type(input_data):
    try:
        return type(literal_eval(input_data))
    except (ValueError, SyntaxError):
        return str

flag = True

while(flag):
    age = raw_input("Please enter your age: ")

    if input_type(age)==float or input_type(age)==int:
        if eval(age)>=18: 
            print("You are able to vote in the United States!") 
            flag = False 
        elif eval(age)>0 and eval(age)<18: 
            print("You are not able to vote in the United States.") 
            flag = False
        else: print("Please enter a valid number as your age.")

    else: print("Sorry, I didn't understand that.") 

0

常に単純なif-elseロジックを適用ifし、forループとともにコードにロジックを1つ追加できます。

while True:
     age = int(input("Please enter your age: "))
     if (age >= 18)  : 
         print("You are able to vote in the United States!")
     if (age < 18) & (age > 0):
         print("You are not able to vote in the United States.")
     else:
         print("Wrong characters, the input must be numeric")
         continue

これは無限のトイレとなり、無期限に年齢を入力するよう求められます。


これは実際には質問の答えにはなりません。問題は、無期限ではなく、有効な応答が得られるまでユーザー入力を取得することでした。
Georgy

-1

多くの実際のアプリケーションで同じユースケースが発生するため、より一般的なロジックを記述して、ユーザーが特定の回数だけ入力できるようにすることができます。

def getValidInt(iMaxAttemps = None):
  iCount = 0
  while True:
    # exit when maximum attempt limit has expired
    if iCount != None and iCount > iMaxAttemps:
       return 0     # return as default value

    i = raw_input("Enter no")
    try:
       i = int(i)
    except ValueError as e:
       print "Enter valid int value"
    else:
       break

    return i

age = getValidInt()
# do whatever you want to do.

1
各ループの後にiCount値を増やすのを忘れる
-Thu Vuong

-1

入力ステートメントをwhile Trueループにして、ユーザー入力を繰り返し要求し、ユーザーが必要な応答を入力した場合にループを中断することができます。また、tryブロックとexceptブロックを使用して、無効な応答を処理できます。

while True:

    var = True

    try:
        age = int(input("Please enter your age: "))

    except ValueError:
        print("Invalid input.")
        var = False

    if var == True:
        if age >= 18:
                print("You are able to vote in the United States.")
                break
        else:
            print("You are not able to vote in the United States.")

var変数は、ユーザーが整数ではなく文字列を入力した場合に、プログラムが「米国では投票できない」ことを返さないようにするためのものです。


-1

ユーザーが真の値を入力するまで「while」ステートメントを使用し、入力値が数値ではないかnull値である場合は、それをスキップしてもう一度質問してください。例では、私は本当にあなたの質問に答えようとしました。年齢が1から150の間であると想定した場合、入力値は受け入れられます。それ以外の場合は、間違った値です。プログラムを終了する場合、ユーザーは0キーを使用して値として入力できます。

注:コード上部のコメントをお読みください。

# If your input value is only a number then use "Value.isdigit() == False".
# If you need an input that is a text, you should remove "Value.isdigit() == False".
def Input(Message):
    Value = None
    while Value == None or Value.isdigit() == False:
        try:        
            Value = str(input(Message)).strip()
        except InputError:
            Value = None
    return Value

# Example:
age = 0
# If we suppose that our age is between 1 and 150 then input value accepted,
# else it's a wrong value.
while age <=0 or age >150:
    age = int(Input("Please enter your age: "))
    # For terminating program, the user can use 0 key and enter it as an a value.
    if age == 0:
        print("Terminating ...")
        exit(0)

if age >= 18 and age <=150: 
    print("You are able to vote in the United States!")
else:
    print("You are not able to vote in the United States.")

-1

ValidationError整数入力のカスタマイズされた(オプションの)範囲検証を使用した入力検証を使用するためのもう1つのソリューション:

class ValidationError(ValueError): 
    """Special validation error - its message is supposed to be printed"""
    pass

def RangeValidator(text,num,r):
    """Generic validator - raises 'text' as ValidationError if 'num' not in range 'r'."""
    if num in r:
        return num
    raise ValidationError(text)

def ValidCol(c): 
    """Specialized column validator providing text and range."""
    return RangeValidator("Columns must be in the range of 0 to 3 (inclusive)", 
                          c, range(4))

def ValidRow(r): 
    """Specialized row validator providing text and range."""
    return RangeValidator("Rows must be in the range of 5 to 15(exclusive)",
                          r, range(5,15))

使用法:

def GetInt(text, validator=None):
    """Aks user for integer input until a valid integer is given. If provided, 
    a 'validator' function takes the integer and either raises a 
    ValidationError to be printed or returns the valid number. 
    Non integers display a simple error message."""
    print()
    while True:
        n = input(text)
        try:
            n = int(n)

            return n if validator is None else validator(n)

        except ValueError as ve:
            # prints ValidationErrors directly - else generic message:
            if isinstance(ve, ValidationError):
                print(ve)
            else:
                print("Invalid input: ", n)


column = GetInt("Pleased enter column: ", ValidCol)
row = GetInt("Pleased enter row: ", ValidRow)
print( row, column)

出力:

Pleased enter column: 22
Columns must be in the range of 0 to 3 (inclusive)
Pleased enter column: -2
Columns must be in the range of 0 to 3 (inclusive)
Pleased enter column: 2
Pleased enter row: a
Invalid input:  a
Pleased enter row: 72
Rows must be in the range of 5 to 15(exclusive)
Pleased enter row: 9  

9, 2

-1

以下は、if / elseブロックの繰り返しを回避する、よりクリーンで一般化されたソリューションです。辞書で(エラー、エラープロンプト)のペアを取る関数を記述し、アサーションですべての値チェックを実行します。

def validate_input(prompt, error_map):
    while True:
        try:
            data = int(input(prompt))
            # Insert your non-exception-throwing conditionals here
            assert data > 0
            return data
        # Print whatever text you want the user to see
        # depending on how they messed up
        except tuple(error_map.keys()) as e:
            print(error_map[type(e)])

使用法:

d = {ValueError: 'Integers only', AssertionError: 'Positive numbers only', 
     KeyboardInterrupt: 'You can never leave'}
user_input = validate_input("Positive number: ", d)

-1

再帰関数を使用した永続的なユーザー入力

ストリング

def askName():
    return input("Write your name: ").strip() or askName()

name = askName()

整数

def askAge():
    try: return int(input("Enter your age: "))
    except ValueError: return askAge()

age = askAge()

そして最後に、質問の要件:

def askAge():
    try: return int(input("Enter your age: "))
    except ValueError: return askAge()

age = askAge()

responseAge = [
    "You are able to vote in the United States!",
    "You are not able to vote in the United States.",
][int(age < 18)]

print(responseAge)

-2

簡単な解決策は次のとおりです。

while True:
    age = int(input("Please enter your age: "))

    if (age<=0) or (age>120):
        print('Sorry, I did not understand that.Please try again')
        continue
    else:

        if age>=18:
            print("You are able to vote in the United States!")
        else:
            print("You are not able to vote in the United States.")
        break

上記のコードの説明: 有効な年齢のためには、正である必要があり、通常の物理的年齢を超えてはなりません。たとえば、最大年齢は120です。

次に、ユーザーに年齢を尋ねることができます。年齢の入力が負または120を超える場合は、無効な入力と見なして、ユーザーに再試行するように求めます。

有効な入力を入力したら、年齢が18以上であるかどうか(ネストされたif-elseステートメントを使用して)チェックを実行し、ユーザーが投票資格があるかどうかメッセージを出力します


「年齢を入力してください:ディケット6」:質問で述べたのと同じクラッシュ
BDL

-2

入力を文字列として受け取り、isdigit()を使用して入力に数字のみが含まれていて空ではないことを確認します。-veは使用できません

while(True):
   #take input as string
   name = input('Enter age : ')
   #check if valid age, only digits
   print( name.isdigit() ) 

run output : 
Enter age : 12
True
Enter age : 
False
Enter age : qwd
False
Enter age : dw3
False
Enter age : 21de
False
Enter age : 1
True
Enter age : -1
False


それはまた質問に答えません。
ジョージー
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.