print("this program will calculate the area")
input("[Press any key to start]")
width = int(input("enter width"))
if width < 0:
print ("please chose a number between 0-1000")
width = int(input("enter width"))
if width > 1000000:
print ("please chose a number between 0-1000")
width = int(input("enter width"))
height = int(input("Enter Height"))
area = width*height
print("The area is:",area)
たとえば、以下のコードをまとめる方法はありますか?そのため、less then ステートメントと greater then ステートメントを 2 回使用する以外は、ほぼ同じコード行を記述する必要はありません。
width = int(input("enter width"))
if width < 0:
print ("please chose a number between 0-1000")
width = int(input("enter width"))
if width > 1000000:
print ("please chose a number between 0-1000")
width = int(input("enter width"))
私が試してみました
width = int(input("enter width"))
if width < 0 and > 10000:
print ("please chose a number between 0-1000")
width = int(input("enter width"))
しかし、私は愛を得ることができません。
私もタイプしたくない
width = int(input("enter width"))
それが助けることができる場合は、2回ステートメント。
ありがとうベン