# Quiz 1.3.4 - Modify this code to NOT use 'elif' command # and still give the same/correct output when run. from __future__ import print_function def quiz_decimal(low, high): print('Type a number between '+str(low)+' and '+str(high)+': ',end='' ) user_value = float(raw_input()) if int(user_value) == user_value: user_value = int(user_value) if user_value < low: print('No, ' + str(user_value) + ' is less than ' + str(low)) elif user_value > high: print('No, ' + str(user_value) + ' is greater than ' + str(high)) else: print('Good! ' + str(low) + ' < ' + str(user_value) + ' < '+ str(high))