炒饭=5
水饺=4
print(炒饭>水饺)
print(not 炒饭!=水饺)

print(炒饭>水饺 and 炒饭<水饺)


if 炒饭>水饺:
    print("炒饭贵")
else:
    print("水饺贵")



点餐 = input("请问,你想吃点什么?A:炒饭 B:水饺").upper().strip()

if 点餐=="A":
    print(f"炒饭的价格是{炒饭}元")
elif 点餐=="B":
    print(f"水饺的价格是{水饺}元")
else: 
    print("暂无此餐品")

