-5
このコードで何が間違っているのですが、4000を入力すると "あなたはテレビを持っています"と表示されないのはなぜですか?If-Else文がPythonで正常に動作しない
Deposit = int(input("Enter your amount =)")
if Deposit > 100:
print("you got a tosteer")
elif Deposit > 1000:
print("you got a t.v")
4000> 100. –
なので、el-elifの仕組みをお読みください。 – Lafexlos