Jika Anda memiliki daftar dan pengguna memasukkan salah satu tombol maka output nilainya

# here is a list of food and its Calories 
list ={
    "Apple": "130",
    "Avocado": "50",
}
# get the key from user and print its value
try:
    item = str(input("Item: "))
    print(list[f"{item}"])
except KeyError:
    pass
Inquisitive Ibex