私のコードはほとんどこれです:
Rate = input ("Enter Desired Rate of Charge: ") #User will be prompted to enter the charge rate of the system
if Rate < 0.5:
#If the charge rate entered is less than 0.5 kWhs
print "Charge Rate Too Low: Please consider revision" #Tells the user the rate is too low
elif Rate > 2.0:
#Also, if the charge rate entered is greater than 2.0 kWhs...
print "Charge Rate Too High: Please consider revision" #Tells the user the rate is too high
else:
#Otherwise, for any number entered between the bounds of 0.5 and 2.0 kWhs...
print '\n' #Page break for new conditions.
入力された整数が 0.5 未満または 2 より大きい場合は、ユーザーに再度プロンプトを表示する必要があります。ユーザーがそれを行った場合は、その整数を Rate として保存して先に進みます。ありがとうございました。