ユーザーからの入力を求めるプログラムを書いています。
入力が数字(単語や句読点ではありません...)であるかどうか、およびタプル内のオブジェクトを示す数字であるかどうかをpythonに確認してもらいたいです。3 つの条件のいずれかが False になった場合、ユーザーにその変数に別の値を指定してもらいたいと思います。これが私のコードです
colour={'yello':1, 'blue':2, 'red':3, 'black': 4, 'white': 5, 'green': 6}
height_measurements=('centimeter:1', 'inch:2', 'meter:3', 'foot:4')
weight_measurements=('gram:1', 'kilogram:2', 'pounds:3')
print height_measurements
hm_choice = raw_input('choose your height measurement').lower()
while not hm_choice.isdigit() or hm_choice > 0 or hm_choice < len(height_measurements) :
hm_choice = raw_input('choose your height measurement').lower()
print weight_measurements
wm_choice = raw_input('choose your weight measurement').lower()
while not wm_choice.isdigit() or wm_choice > 0 or wm_choce < len(weight_measurements) :
wm_choice = raw_input('choose your weight measurement').lower()
これをテストすると、何を入力しても常に height_measurement の入力を挿入するようになりました
コードを確認して修正してください。また、よろしければ、あなたのより良いコードを教えてください。