ht = {}


ht["golf"] = 1
ht["gaming"] = 3
ht["golf"] -= 1

print(ht)

for key, value in ht.items():
    print(f"{value} people like {key}")

if "golf" in ht:
    print("Someone once liked golf even if no one does anymore.")